import type { Component, ExtractPropTypes } from 'vue'; import type { Options } from '@popperjs/core'; import type { Dayjs } from 'dayjs'; export declare type SingleOrRange = T | [T, T]; export declare type DateModelType = number | string | Date; export declare type ModelValueType = SingleOrRange; export declare type DayOrDays = SingleOrRange; export declare type DateOrDates = SingleOrRange; export declare type UserInput = SingleOrRange; 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 timePickerDefaultProps: { readonly disabledDate: { readonly type: import("@vue/runtime-core").PropType; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly cellClassName: { readonly type: import("@vue/runtime-core").PropType; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly shortcuts: import("@element-plus-next/vue-utils").EpPropFinalized never[], boolean>; readonly arrowControl: import("@element-plus-next/vue-utils").EpPropFinalized; readonly label: import("@element-plus-next/vue-utils").EpPropFinalized; readonly tabindex: import("@element-plus-next/vue-utils").EpPropFinalized<(new (...args: any[]) => (string | number) & {}) | (() => string | number) | ((new (...args: any[]) => (string | number) & {}) | (() => string | number))[], unknown, unknown, 0, boolean>; readonly validateEvent: import("@element-plus-next/vue-utils").EpPropFinalized; readonly unlinkPanels: BooleanConstructor; readonly disabledHours: { readonly type: import("@vue/runtime-core").PropType; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly disabledMinutes: { readonly type: import("@vue/runtime-core").PropType; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly disabledSeconds: { readonly type: import("@vue/runtime-core").PropType; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly id: { readonly type: import("@vue/runtime-core").PropType SingleOrRange & {}) | (() => SingleOrRange) | ((new (...args: any[]) => SingleOrRange & {}) | (() => SingleOrRange))[], unknown, unknown>>; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly name: import("@element-plus-next/vue-utils").EpPropFinalized<(new (...args: any[]) => SingleOrRange & {}) | (() => SingleOrRange) | ((new (...args: any[]) => SingleOrRange & {}) | (() => SingleOrRange))[], unknown, unknown, "", boolean>; readonly popperClass: import("@element-plus-next/vue-utils").EpPropFinalized; readonly format: StringConstructor; readonly valueFormat: StringConstructor; readonly type: import("@element-plus-next/vue-utils").EpPropFinalized; readonly clearable: import("@element-plus-next/vue-utils").EpPropFinalized; readonly clearIcon: import("@element-plus-next/vue-utils").EpPropFinalized<(new (...args: any[]) => (string | Component) & {}) | (() => string | Component) | ((new (...args: any[]) => (string | Component) & {}) | (() => string | Component))[], unknown, unknown, import("@vue/runtime-core").DefineComponent<{}, {}, {}, import("@vue/runtime-core").ComputedOptions, import("@vue/runtime-core").MethodOptions, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly>, {}>, boolean>; readonly editable: import("@element-plus-next/vue-utils").EpPropFinalized; readonly prefixIcon: import("@element-plus-next/vue-utils").EpPropFinalized<(new (...args: any[]) => (string | Component) & {}) | (() => string | Component) | ((new (...args: any[]) => (string | Component) & {}) | (() => string | Component))[], unknown, unknown, "", boolean>; readonly size: { readonly type: _vue_runtime_core.PropType>; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly readonly: import("@element-plus-next/vue-utils").EpPropFinalized; readonly disabled: import("@element-plus-next/vue-utils").EpPropFinalized; readonly placeholder: import("@element-plus-next/vue-utils").EpPropFinalized; readonly popperOptions: import("@element-plus-next/vue-utils").EpPropFinalized<(new (...args: any[]) => Partial) | (() => Partial) | ((new (...args: any[]) => Partial) | (() => Partial))[], unknown, unknown, () => {}, boolean>; readonly modelValue: import("@element-plus-next/vue-utils").EpPropFinalized<(new (...args: any[]) => ModelValueType & {}) | (() => ModelValueType) | ((new (...args: any[]) => ModelValueType & {}) | (() => ModelValueType))[], unknown, unknown, "", boolean>; readonly rangeSeparator: import("@element-plus-next/vue-utils").EpPropFinalized; readonly startPlaceholder: StringConstructor; readonly endPlaceholder: StringConstructor; readonly defaultValue: { readonly type: import("@vue/runtime-core").PropType Date | [Date, Date]) | (() => SingleOrRange) | ((new (...args: any[]) => Date | [Date, Date]) | (() => SingleOrRange))[], unknown, unknown>>; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly defaultTime: { readonly type: import("@vue/runtime-core").PropType Date | [Date, Date]) | (() => SingleOrRange) | ((new (...args: any[]) => Date | [Date, Date]) | (() => SingleOrRange))[], unknown, unknown>>; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly isRange: import("@element-plus-next/vue-utils").EpPropFinalized; }; export declare type TimePickerDefaultProps = ExtractPropTypes; export interface PickerOptions { isValidValue: (date: DayOrDays) => boolean; handleKeydownInput: (event: KeyboardEvent) => void; parseUserInput: (value: UserInput) => DayOrDays; formatToString: (value: DayOrDays) => UserInput; getRangeAvailableTime: (date: DayOrDays) => DayOrDays; getDefaultValue: () => DayOrDays; panelReady: boolean; handleClear: () => void; handleFocusPicker?: () => void; }