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