import { Control, FieldPath, FieldValues } from 'react-hook-form'; import { FieldComponents } from './form'; export interface DatePickerFieldProps = FieldPath> { control?: Control; name: TName; label?: string; description?: string; className?: string; labelClassName?: string; buttonClassName?: string; components?: Partial; } export declare function DatePickerField = FieldPath>({ control, name, label, description, className, labelClassName, buttonClassName, components, }: DatePickerFieldProps): import("react/jsx-runtime").JSX.Element; export declare namespace DatePickerField { var displayName: string; } //# sourceMappingURL=date-picker-field.d.ts.map