import type { DialogCloseConfirm } from "./DialogCloseConfirm"; import { type ButtonAction, type ButtonActions } from "../action-bar"; import { ModalResult, type OnClose } from "./ModalResult"; interface $$__sveltets_2_IsomorphicComponent = any, Events extends Record = any, Slots extends Record = any, Exports = {}, Bindings = string> { new (options: import('svelte').ComponentConstructorOptions): import('svelte').SvelteComponent & { $$bindings?: Bindings; } & Exports; (internal: unknown, props: Props & { $$events?: Events; $$slots?: Slots; }): Exports & { $set?: any; $on?: any; }; z_$$bindings?: Bindings; } type $$__sveltets_2_PropsWithChildren = Props & (Slots extends { default: any; } ? Props extends Record ? any : { children?: any; } : {}); declare const Dialog: $$__sveltets_2_IsomorphicComponent<$$__sveltets_2_PropsWithChildren<{ title: string; width?: string; height?: string; actions?: ButtonActions | null; closeConfirm?: DialogCloseConfirm | null; content$style?: string; hideClose?: boolean; closeAction?: ButtonAction | null; onClose?: OnClose | null; dialog$style?: string; close?: (result: ModalResult) => Promise; }, { default: {}; }>, { [evt: string]: CustomEvent; }, { default: {}; }, { close: (result: ModalResult) => Promise; }, string>; type Dialog = InstanceType; export default Dialog;