import React from "react"; import { type InputFieldProps } from "../../../Input/InputField"; import type { ComponentVariant } from "../../../NDSProvider/ComponentVariantContext"; interface InputProps extends InputFieldProps { placeholder?: string; } type DatePickerInputProps = React.ComponentPropsWithRef<"input"> & { variant?: ComponentVariant; dateFormat?: string; inputProps?: InputProps; locale: string; onInputChange: (e: React.ChangeEvent) => void; onUpKeyPress?: (e: React.KeyboardEvent) => void; onDownKeyPress?: (e: React.KeyboardEvent) => void; onEnterKeyPress: (e: React.KeyboardEvent) => void; }; declare const DatePickerInput: React.ForwardRefExoticComponent & React.RefAttributes>; export default DatePickerInput;