import { SvelteComponentTyped } from "svelte"; import type { FormFieldType, ModalSizeType } from '../../types/types'; declare const __propDef: { props: { [x: string]: any; title?: string | undefined; okText?: string | undefined; cancelText?: string | undefined; okBtnClass?: string | undefined; cancelBtnClass?: string | undefined; onResult: (res: any) => void; modalId?: string | undefined; fields?: FormFieldType[] | undefined; values?: any; modalSize?: ModalSizeType | undefined; scrollable?: boolean | undefined; contentStyle?: string | undefined; okBtnStyle?: string | undefined; cancelBtnStyle?: string | undefined; cancelable?: boolean | undefined; backdropClass?: string | undefined; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type PromptDialogProps = typeof __propDef.props; export type PromptDialogEvents = typeof __propDef.events; export type PromptDialogSlots = typeof __propDef.slots; export default class PromptDialog extends SvelteComponentTyped { } export {};