import { MouseEvent, ComponentClass } from 'react' import { CommonEventFunction } from '@tarojs/components/types/common' import AtComponent from './base' export interface AtCurtainProps extends AtComponent { /** * 是否开启 * @default false */ isOpened/*;是已开*/?: boolean /** * 关闭图标位置 * 'top', 'top-left', 'top-right', 'bottom', 'bottom-left', 'bottom-right' * @default 'bottom' */ closeBtnPosition/*;关闭按钮位置*/?: 'top'/*;上*/ | 'top-left'/*;左上*/ | 'top-right'/*;右上*/ | 'bottom'/*;下*/ | 'bottom-left'/*;左下*/ | 'bottom-right'/*;右下*/ /** * 点击关闭按钮触发事件 */ onClose/*;当关*/: CommonEventFunction } declare const AtCurtain: ComponentClass export default AtCurtain