import { DatePickerProps, PickerValidDate } from '@mui/x-date-pickers';
import { ReactNode } from 'react';
import { InputErrorProps, InputSizeType, InputVariantType } from '../../types';
export interface InputDatePickerLabelOutPropsModel<TDate extends PickerValidDate> extends Omit<DatePickerProps<TDate>, 'renderInput'>, InputErrorProps {
    label?: string;
    id?: string;
    variant?: InputVariantType;
    size?: InputSizeType;
    backgroundColor?: string;
    disabledHoverVariantOutAndFlo?: boolean;
    helperNode?: ReactNode;
}
