import * as _angular_core from '@angular/core'; /** * Empty-state placeholder. Drop into any container where the underlying * data is missing (search yielded nothing, table is empty, etc.). * * Slots: * * - **Default** — primary description / instructions. * - **`[wrEmptyActions]`** — action row rendered below the description. * * Localization: the default headline reads from the `empty.noData` key in * the registered `WrI18n` catalog, falling back to `'No data'` when no * `WrI18n` is provided. The `[title]` input always wins when set. * * @example * ```html * * Try a different query or clear filters. * * Reset filters * * * ``` * * @see https://ngwr.dev/components/empty */ declare class WrEmpty { /** Icon name shown above the title. @default 'folder' */ readonly icon: _angular_core.InputSignal; /** Headline. Falls back to `empty.noData` from WrI18n, then `'No data'`. */ readonly title: _angular_core.InputSignal; protected readonly resolvedTitle: _angular_core.Signal; static ɵfac: _angular_core.ɵɵFactoryDeclaration; static ɵcmp: _angular_core.ɵɵComponentDeclaration; } export { WrEmpty };