import { NativeProps } from 'antd-mobile/es/utils/native-props';
import React from 'react';
import { PropagationEvent } from 'antd-mobile/es/utils/with-stop-propagation';
import { ITouchEvent } from '@tarojs/components';
export declare type MaskProps = {
    visible?: boolean;
    onMaskClick?: (event: ITouchEvent) => void;
    destroyOnClose?: boolean;
    forceRender?: boolean;
    disableBodyScroll?: boolean;
    color?: 'black' | 'white';
    opacity?: 'default' | 'thin' | 'thick' | number;
    afterShow?: () => void;
    afterClose?: () => void;
    stopPropagation?: PropagationEvent[];
    children?: React.ReactNode;
} & NativeProps<'--z-index'>;
export declare const Mask: React.FC<MaskProps>;
