import * as _angular_core from '@angular/core'; import { OnInit } from '@angular/core'; import { FormGroup, FormControl } from '@angular/forms'; import { NgAtomicComponent } from '@ng-atomic/core'; import dayjs from 'dayjs'; declare enum ActionId { FIX_BUTTON_CLICK = "[@xxmachina/scheduler] Fix Button Click", DELETE_BUTTON_CLICK = "[@xxmachina/scheduler] Delete Button Click" } declare class EventInputSectionOrganism extends NgAtomicComponent implements OnInit { static readonly ActionId: typeof ActionId; protected form: FormGroup<{ date: FormControl; startAt: FormControl; endAt: FormControl; }>; fixActions: { id: ActionId; name: string; icon: string; }[]; actions: { id: ActionId; name: string; icon: string; }[]; label: string; control: FormGroup<{ startAt: FormControl; endAt: FormControl; }>; readonly startValue: _angular_core.Signal; protected startAutoComplete: _angular_core.WritableSignal; protected options: _angular_core.Signal<{ value: string; name: string; }[]>; protected endAutoComplete: _angular_core.WritableSignal; ngOnInit(): void; static ɵfac: _angular_core.ɵɵFactoryDeclaration; static ɵcmp: _angular_core.ɵɵComponentDeclaration; } export { EventInputSectionOrganism }; //# sourceMappingURL=xxmachina-components-organisms-event-input-section.d.ts.map