import { OnyxModalProps } from './types.js'; type __VLS_Slots = { /** * 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 slot to add custom content, e.g. a description to the dialog header (below the * headline). */ description?(): unknown; /** * Optional footer slot to e.g. show action buttons (see OnyxBottomBar component). */ footer?(): unknown; }; declare const __VLS_base: import('vue', { with: { "resolution-mode": "import" } }).DefineComponent any; }, string, import('vue', { with: { "resolution-mode": "import" } }).PublicProps, Readonly & Readonly<{ "onUpdate:open"?: ((open: boolean) => any) | undefined; }>, {}, {}, {}, {}, string, import('vue', { with: { "resolution-mode": "import" } }).ComponentProvideOptions, false, {}, any>; declare const __VLS_export: __VLS_WithSlots; declare const _default: typeof __VLS_export; export default _default; type __VLS_WithSlots = T & { new (): { $slots: S; }; };