import type { ExtractPropTypes } from 'vue'; import type { Dayjs } from 'dayjs'; export declare type GetDisabledHours = (role: string, comparingDate?: Dayjs) => number[]; export declare type GetDisabledMinutes = (hour: number, role: string, comparingDate?: Dayjs) => number[]; export declare type GetDisabledSeconds = (hour: number, minute: number, role: string, comparingDate?: Dayjs) => number[]; export declare const disabledTimeListsProps: { readonly disabledHours: { readonly type: import("vue").PropType; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly disabledMinutes: { readonly type: import("vue").PropType; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly disabledSeconds: { readonly type: import("vue").PropType; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; }; export declare type DisabledTimeListsProps = ExtractPropTypes; export declare const timePanelSharedProps: { readonly visible: BooleanConstructor; readonly actualVisible: import("element-plus/es/utils").EpPropFinalized; readonly format: import("element-plus/es/utils").EpPropFinalized; }; export declare type TimePanelSharedProps = ExtractPropTypes;