You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
444 B
14 lines
444 B
/// <reference types="react" />
|
|
import type { CSSMotionProps } from 'rc-motion';
|
|
import type { TransitionNameType, AnimationType } from '../interface';
|
|
export interface MaskProps {
|
|
prefixCls: string;
|
|
visible?: boolean;
|
|
zIndex?: number;
|
|
mask?: boolean;
|
|
maskMotion?: CSSMotionProps;
|
|
maskAnimation?: AnimationType;
|
|
maskTransitionName?: TransitionNameType;
|
|
}
|
|
export default function Mask(props: MaskProps): JSX.Element;
|