import { PartsType } from './enum'; import { IVcBaseInputProps } from '../../composables/input/useInputBase'; import { InternalModuleValue } from '../../types'; type DateModelType = Date | undefined; interface IEDRPPProps extends IVcBaseInputProps { part: PartsType; modelValue?: DateModelType; maxDate?: DateModelType; minDate?: DateModelType; inputWrapperClassesProp?: string; inputDateFormat?: string; inputTimeFormat?: string; presetValue?: string; } declare const _default: import("vue").DefineComponent, { modelValue: undefined; maxDate: undefined; minDate: undefined; inputWrapperClassesProp: string; inputDateFormat: string; inputTimeFormat: string; disabled: boolean; presetValue: string; color: string; }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:modelValue": (pl: DateModelType) => void; internalValueChange: (pl: InternalModuleValue) => void; presetValueChange: (pl: string, d?: Date | undefined) => void; resetPreset: () => void; }, string, import("vue").PublicProps, Readonly, { modelValue: undefined; maxDate: undefined; minDate: undefined; inputWrapperClassesProp: string; inputDateFormat: string; inputTimeFormat: string; disabled: boolean; presetValue: string; color: string; }>>> & Readonly<{ "onUpdate:modelValue"?: ((pl: DateModelType) => any) | undefined; onInternalValueChange?: ((pl: InternalModuleValue) => any) | undefined; onPresetValueChange?: ((pl: string, d?: Date | undefined) => any) | undefined; onResetPreset?: (() => any) | undefined; }>, { color: "" | "success" | "warning" | "primary" | "secondary" | "destructive" | "active" | "primary-alternative"; disabled: boolean; modelValue: Date; minDate: Date; maxDate: Date; presetValue: string; inputWrapperClassesProp: string; inputDateFormat: string; inputTimeFormat: string; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>; export default _default; type __VLS_NonUndefinedable = T extends undefined ? never : T; type __VLS_TypePropsToRuntimeProps = { [K in keyof T]-?: {} extends Pick ? { type: import('vue').PropType<__VLS_NonUndefinedable>; } : { type: import('vue').PropType; required: true; }; }; type __VLS_WithDefaults = { [K in keyof Pick]: K extends keyof D ? __VLS_Prettify : P[K]; }; type __VLS_Prettify = { [K in keyof T]: T[K]; } & {};