import React from "react"; export declare const DatePicker: React.ForwardRefExoticComponent<{ format?: import("../dateMask").DateFormat; maskBlocks?: import("../dateMask").DateMaskBlocks; onAccept?: (value: string, unmaskedValue: string, typedValue: string) => void; onComplete?: (value: string, unmaskedValue: string, typedValue: string) => void; "data-e2e-test-id"?: string; slotProps: { input?: { placeholder?: { visible?: boolean; chars?: { day?: string; month?: string; year?: string; }; }; }; calendarButton: { ariaLabelOpen: string; ariaLabelClose: string; }; calendar: { ariaLabelMonth: string; ariaLabelYear: string; ariaLabelCalendarGrid: string; formatAriaLabel: (monthName: string, year: number) => string; }; }; } & import("../FormField/FormField").FormFieldProps & Omit, "value" | "type" | "onChange"> & { value?: string; hasError?: boolean; } & React.RefAttributes>;