Mask.d.ts 281 Bytes
import * as React from 'react';
export interface MaskProps {
    prefixCls: string;
    visible: boolean;
    motionName?: string;
    style?: React.CSSProperties;
    maskProps?: React.HTMLAttributes<HTMLDivElement>;
}
export default function Mask(props: MaskProps): JSX.Element;