import React, { FC, ReactNode } from 'react'; import SeverityType from '../../types/SeverityType'; export type DateTimeFormatPartType = 'day' | 'month' | 'year'; export interface DateFormatType { parts: Array; placeholder: Array; separator: string; } export interface PropsType { locale: string; value: string; name: string; disabled?: boolean; feedback?: { 'data-testid'?: string; severity: SeverityType; message: ReactNode; }; 'data-testid'?: string; extractRef?(ref: HTMLElement): void; onChange(value: string): void; onFocus(value: string): void; onBlur(value: string): void; } declare const DateField: FC>; export default DateField;