import { IDialogButton, IDialogSeverity } from './types.ts'; type __VLS_Props = { /** * Headline of the dialog */ name: string; /** * Main text of the dialog */ text: string; /** * HTML content * * @deprecated DO NOT USE! This is just for backwards compatibility and will be removed in the near future! */ html?: string; /** * Buttons on the dialog */ buttons?: IDialogButton[]; /** * Severity of the dialog - if a notecard is used */ severity?: IDialogSeverity; }; declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { close: (buttonClick: boolean) => any; }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{ onClose?: ((buttonClick: boolean) => any) | undefined; }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>; export default _default;