amis-rpc-design/node_modules/@rc-component/tour/es/Mask.d.ts
2023-10-07 19:42:30 +08:00

18 lines
441 B
TypeScript

import React from 'react';
import type { PosInfo } from './hooks/useTarget';
export interface MaskProps {
prefixCls?: string;
pos: PosInfo;
rootClassName?: string;
showMask?: boolean;
style?: React.CSSProperties;
fill?: string;
open?: boolean;
animated?: boolean | {
placeholder: boolean;
};
zIndex?: number;
}
declare const Mask: (props: MaskProps) => React.JSX.Element;
export default Mask;