///
import { DatePickerActionButtonProps, DatePickerHeaderProps } from "./DatePicker.interface";
export declare const DatePickerComponents: {
Header: ({ increaseMonth, decreaseMonth, increaseYear, decreaseYear, monthDate, date, onHeaderDateClick, currentPicker, }: DatePickerHeaderProps) => import("react/jsx-runtime").JSX.Element;
Input: import("react").ForwardRefExoticComponent<{
enabledKeys: string[];
label?: string | undefined;
inputId: string;
errorMessage?: import("react").ReactNode;
supportingText?: string | undefined;
} & Omit & import("react").RefAttributes>;
Actions: ({ cancelText, onCancelClick, confirmText, onConfirmClick, }: DatePickerActionButtonProps) => import("react/jsx-runtime").JSX.Element;
};