import { SvelteComponentTyped } from "svelte"; import type { ModalSizeType } from '../../types/types'; declare const __propDef: { props: { [x: string]: any; message?: string | undefined; title?: string | undefined; okText?: string | undefined; cancelText?: string | undefined; okBtnClass?: string | undefined; cancelBtnClass?: string | undefined; onResult: (result: any) => void; modalSize?: ModalSizeType | undefined; scrollable?: boolean | undefined; contentStyle?: string | undefined; cancelable?: boolean | undefined; backdropClass?: string | undefined; okBtnStyle?: string | undefined; cancelBtnStyle?: string | undefined; modalId: string; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type ConfirmDialogProps = typeof __propDef.props; export type ConfirmDialogEvents = typeof __propDef.events; export type ConfirmDialogSlots = typeof __propDef.slots; export default class ConfirmDialog extends SvelteComponentTyped { } export {};