import { SvelteComponentTyped } from "svelte"; import type { ModalSizeType } from '../../types/types'; declare const __propDef: { props: { message?: string | undefined; title?: string | undefined; onResult: (res: any) => void; modalSize?: ModalSizeType | undefined; scrollable?: boolean | undefined; contentStyle?: string | undefined; okText?: string | undefined; okBtnClass?: string | undefined; okBtnStyle?: string | undefined; cancelable?: boolean | undefined; backdropClass?: string | undefined; modalId: string; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type AlertDialogProps = typeof __propDef.props; export type AlertDialogEvents = typeof __propDef.events; export type AlertDialogSlots = typeof __propDef.slots; export default class AlertDialog extends SvelteComponentTyped { } export {};