import { PropType } from "vue"; import "./styles/index.css"; import { ExtractPublicPropTypes } from "../../util/extract-public-props"; declare const modalProps: { title: { type: StringConstructor; }; show: { type: BooleanConstructor; default: boolean; }; "onUpdate:show": PropType<(value: boolean) => void>; onClose: PropType<() => boolean>; }; export declare type ModalProps = ExtractPublicPropTypes; declare const _default: import("vue").DefineComponent<{ title: { type: StringConstructor; }; show: { type: BooleanConstructor; default: boolean; }; "onUpdate:show": PropType<(value: boolean) => void>; onClose: PropType<() => boolean>; }, { doUpdateShow: (show: boolean) => void; handleCloseClick: () => void; }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly void>; onClose: PropType<() => boolean>; }>>, { show: boolean; }>; export default _default;