/** @typedef {typeof __propDef.props} FormDialogProps */ /** @typedef {typeof __propDef.events} FormDialogEvents */ /** @typedef {typeof __propDef.slots} FormDialogSlots */ export default class FormDialog extends SvelteComponentTyped<{ [x: string]: any; dialog: any; error?: string | undefined; size?: string | undefined; isDisabled?: boolean | undefined; isLoading?: boolean | undefined; initialFocusID?: null | undefined; title?: string | undefined; submitLabel?: string | undefined; submitColor?: string | undefined; }, { submit: SubmitEvent; } & { [evt: string]: CustomEvent; }, { default: {}; }> { } export type FormDialogProps = typeof __propDef.props; export type FormDialogEvents = typeof __propDef.events; export type FormDialogSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; dialog: any; error?: string | undefined; size?: string | undefined; isDisabled?: boolean | undefined; isLoading?: boolean | undefined; initialFocusID?: null | undefined; title?: string | undefined; submitLabel?: string | undefined; submitColor?: string | undefined; }; events: { submit: SubmitEvent; } & { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export {};