import * as _angular_core from '@angular/core'; /** * Event-list ladder. Project `` children. * * @example * ```html * * Initial commit. * Live. * * ``` * * @see https://ngwr.dev/components/timeline */ declare class WrTimeline { readonly orientation: _angular_core.InputSignal<"vertical" | "horizontal">; protected readonly classes: _angular_core.Signal; static ɵfac: _angular_core.ɵɵFactoryDeclaration; static ɵcmp: _angular_core.ɵɵComponentDeclaration; } /** Built-in dot colours. */ type WrTimelineColor = 'primary' | 'success' | 'warning' | 'danger' | 'medium'; /** * One event in a {@link WrTimeline}. Project content for the * description; `title` and `time` are header inputs. */ declare class WrTimelineItem { readonly title: _angular_core.InputSignal; readonly time: _angular_core.InputSignal; readonly color: _angular_core.InputSignal; protected readonly classes: _angular_core.Signal; static ɵfac: _angular_core.ɵɵFactoryDeclaration; static ɵcmp: _angular_core.ɵɵComponentDeclaration; } export { WrTimeline, WrTimelineItem }; export type { WrTimelineColor };