import { IconType } from '..'; /** * Placeholder for empty lists / no-results / zero states. * - `icon` + `title` + `description` for the common case. * - `actionLabel` (+ `to`/`href` or @action) renders a primary button. * - Slots: `#icon`, default (body text), `#action` for full control. * - `compact` for tight inline spots (table empties, small cards). */ type __VLS_Props = { icon?: IconType | 'none'; title?: string; description?: string; actionLabel?: string; actionIcon?: IconType; to?: string | Record; href?: string; compact?: boolean; class?: string; }; declare function __VLS_template(): { attrs: Partial<{}>; slots: { icon?(_: {}): any; default?(_: {}): any; action?(_: {}): any; }; refs: {}; rootEl: HTMLDivElement; }; type __VLS_TemplateResult = ReturnType; declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { action: () => any; }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{ onAction?: (() => any) | undefined; }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>; declare const _default: __VLS_WithTemplateSlots; export default _default; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; }; //# sourceMappingURL=EmptyState.vue.d.ts.map