import React, { MutableRefObject, RefObject } from 'react'; export declare type Props = { size?: 'compact' | 'default'; label?: string; setSelectedDate: (date: Date) => void; inputValue?: string; setInputValue: (input?: string) => void; rightContent?: React.ReactNode; placeholder?: string; max?: string; min?: string; fullWidth?: boolean; error?: boolean; helpText?: React.ReactNode; name?: string; required?: boolean; disabled?: boolean; inputRef?: RefObject | MutableRefObject; }; export declare const DatePickerInput: (props: Props) => JSX.Element;