import type { ExtractPropTypes, PropType } from "vue"; export declare type positionType = "default" | "top" | "left" | "bottom" | "right"; export declare const popupProps: { position: { type: PropType; default: positionType; }; visible: { type: BooleanConstructor; default: boolean; }; bgColor: { type: PropType; default: string; }; width: { type: PropType; default: string; }; height: { type: PropType; default: string; }; mask: { type: BooleanConstructor; default: boolean; }; isMaskClick: { type: BooleanConstructor; default: boolean; }; "onUpdate:visible": { type: PropType<(visible: boolean) => void>; }; }; export declare type PopupProps = ExtractPropTypes;