import { TdPopupProps } from './type';
import { PropType } from 'vue';
declare const _default: {
    attach: {
        type: PropType<TdPopupProps['attach']>;
        default: TdPopupProps['attach'];
    };
    closeBtn: {
        type: PropType<TdPopupProps['closeBtn']>;
    };
    closeOnOverlayClick: {
        type: BooleanConstructor;
        default: boolean;
    };
    destroyOnClose: BooleanConstructor;
    duration: {
        type: NumberConstructor;
        default: number;
    };
    overlayProps: {
        type: PropType<TdPopupProps['overlayProps']>;
        default: () => {};
    };
    placement: {
        type: PropType<TdPopupProps['placement']>;
        default: TdPopupProps['placement'];
        validator(val: TdPopupProps['placement']): boolean;
    };
    preventScrollThrough: {
        type: BooleanConstructor;
        default: boolean;
    };
    showOverlay: {
        type: BooleanConstructor;
        default: boolean;
    };
    transitionName: {
        type: StringConstructor;
        default: string;
    };
    visible: {
        type: BooleanConstructor;
        default: any;
    };
    modelValue: {
        type: BooleanConstructor;
        default: any;
    };
    defaultVisible: BooleanConstructor;
    zIndex: {
        type: NumberConstructor;
    };
    onClose: PropType<TdPopupProps['onClose']>;
    onClosed: PropType<TdPopupProps['onClosed']>;
    onOpen: PropType<TdPopupProps['onOpen']>;
    onOpened: PropType<TdPopupProps['onOpened']>;
    onVisibleChange: PropType<TdPopupProps['onVisibleChange']>;
};
export default _default;
