///
import { InputDatePickerProps } from 'jalaali-react-date-picker';
import { InputFieldError } from '../../../utilities';
interface HitobitInputDatePickerProps extends Omit {
wrapperClassName?: string;
/**
* if `error` property provided, regardless of its value, the error gap is applied to component.
*/
error?: InputFieldError;
label?: string | React.ReactNode;
required?: boolean;
helperText?: string;
onChangeISO?: (date: string | undefined) => void;
valueISO?: string;
}
export declare const InputDatePicker: ({ helperText, required, label, error, wrapperClassName, onChange: onChangeProp, onChangeISO, value: valueProp, valueISO, ...props }: HitobitInputDatePickerProps) => import("react/jsx-runtime").JSX.Element;
export {};