import React from "react"; interface DatePickerFieldProps { disabled: boolean; error: React.ReactNode | undefined; className?: string; label?: React.ReactNode; required?: boolean; helpText?: React.ReactNode; labelProps?: Record; errorId: string; helpTextId: string; children: React.ReactNode; } export declare const DatePickerField: React.ForwardRefExoticComponent>; export {};