import { type DateFrameworkType } from "@salt-ds/date-adapters"; import type { SingleDateSelection } from "../calendar"; import { type DateInputSingleDetails, type DateInputSingleProps } from "../date-input"; /** * Props for the DatePickerSingleInput component. * @template TDate - The type of the date object. */ export interface DatePickerSingleInputProps extends DateInputSingleProps { /** * Function to validate the entered date * @param date - The selected date * @param details - The details of date selection, either a valid date or error * @returns updated DateInputSingleDetails details */ validate?: (date: SingleDateSelection, details: DateInputSingleDetails) => DateInputSingleDetails; } export declare const DatePickerSingleInput: import("react").ForwardRefExoticComponent & import("react").RefAttributes>;