import * as _angular_core from '@angular/core'; /** * Read-only labeled key / value list. Project `` * children. `title` is optional. Default layout stacks vertically; set * `[inline]="true"` for label-left / value-right rows. * * @example * ```html * * Ada Lovelace * ada@example.com * 2024-03-12 * * ``` * * @see https://ngwr.dev/components/descriptions */ declare class WrDescriptions { /** Optional title shown above the list. */ readonly title: _angular_core.InputSignal; /** Two-column rows (label left, value right) instead of stacked. @default false */ readonly inline: _angular_core.InputSignalWithTransform; /** Add visible borders around each row. @default false */ readonly bordered: _angular_core.InputSignalWithTransform; /** * Reflow `inline` rows back to a stacked layout when the box itself is * narrow (a container query on its own width, not the viewport — so it * adapts inside a narrow card or side panel). Makes the box fill its * container's width. @default false */ readonly responsive: _angular_core.InputSignalWithTransform; protected readonly classes: _angular_core.Signal; static ɵfac: _angular_core.ɵɵFactoryDeclaration; static ɵcmp: _angular_core.ɵɵComponentDeclaration; } /** * One row in a {@link WrDescriptions}. The label comes from the * `label` input; the value is the projected content. */ declare class WrDescriptionItem { readonly label: _angular_core.InputSignal; static ɵfac: _angular_core.ɵɵFactoryDeclaration; static ɵcmp: _angular_core.ɵɵComponentDeclaration; } export { WrDescriptionItem, WrDescriptions };