import { OnyxDialogProps } from './types.js'; declare function __VLS_template(): { attrs: Partial<{}>; slots: Readonly<{ /** * The trigger for the dialog. Should be an interactive component like a button or link. */ trigger?(params: { /** * Attributes and event listeners that must be bound to an interactive element (button or link), that should act as the dialog trigger. */ trigger: object; }): unknown; /** * Dialog content. */ default(): unknown; /** * Optional slot to override the headline with custom content. * If unset, the `label` property will be shown. */ headline?(bindings: Pick): unknown; /** * Optional footer slot to e.g. show action buttons (see OnyxBottomBar component). */ footer?(): unknown; }> & { /** * The trigger for the dialog. Should be an interactive component like a button or link. */ trigger?(params: { /** * Attributes and event listeners that must be bound to an interactive element (button or link), that should act as the dialog trigger. */ trigger: object; }): unknown; /** * Dialog content. */ default(): unknown; /** * Optional slot to override the headline with custom content. * If unset, the `label` property will be shown. */ headline?(bindings: Pick): unknown; /** * Optional footer slot to e.g. show action buttons (see OnyxBottomBar component). */ footer?(): unknown; }; refs: {}; rootEl: HTMLDivElement; }; type __VLS_TemplateResult = ReturnType; declare const __VLS_component: import('vue', { with: { "resolution-mode": "import" } }).DefineComponent any; }, string, import('vue', { with: { "resolution-mode": "import" } }).PublicProps, Readonly & Readonly<{ "onUpdate:open"?: ((open: boolean) => any) | undefined; }>, { open: boolean | null; sticky: boolean; }, {}, {}, {}, string, import('vue', { with: { "resolution-mode": "import" } }).ComponentProvideOptions, false, {}, HTMLDivElement>; declare const _default: __VLS_WithTemplateSlots; export default _default; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };