import * as i0 from "@angular/core"; export interface DailyPickerValue { selectedDay: Date | null; tab: 'absolute' | 'daily'; } /** * Daily Picker Component * Standalone time picker with Daily/Absolute tabs based on Figma design */ export declare class DailyPickerComponent { activeTab: import("@angular/core").WritableSignal<"absolute" | "daily">; selectedDay: import("@angular/core").WritableSignal; dayInputText: import("@angular/core").WritableSignal; valueChange: import("@angular/core").OutputEmitterRef; cancelPicker: import("@angular/core").OutputEmitterRef; apply: import("@angular/core").OutputEmitterRef; /** * Switch between Absolute and Daily tabs */ switchTab(tab: 'absolute' | 'daily'): void; /** * Handle calendar date selection */ onDateSelect(date: Date): void; /** * Handle day input manual entry */ onDayInputChange(value: string): void; /** * Emit current value */ private emitValue; /** * Handle Cancel button */ onCancel(): void; /** * Handle Apply button */ onApply(): void; /** * Format date for display */ private formatDate; /** * Parse date from string input */ private parseDate; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }