type InjectedProps = { disabled?: boolean; id: string; name?: string; label?: string; onBlur?: (event: React.FocusEvent) => void; onChange?: (event: React.ChangeEvent) => void; onClick?: () => void; onFocus?: (event: React.FocusEvent) => void; onPassthroughFocus?: () => void; onKeyDown?: (event: React.KeyboardEvent) => void; placeholder?: string; readOnly?: boolean; value?: string; errorMessage?: string; helperText?: string; size?: 'md' | 'lg'; }; declare const DateInputWithForwardRef: import("react").ForwardRefExoticComponent<{ id: string; } & InjectedProps & import("react").RefAttributes>; export default DateInputWithForwardRef;