import { FC } from 'react'; import { IFormElement } from 'types'; export interface IDatePicker extends IFormElement { theme?: any; position?: string; handleChange: (name: string, value: string | number | undefined) => void; zIndex?: number; calendarLabels?: { close?: string; confirm?: string; today?: string; }; localeLabels?: { months?: string[]; weekdaysShort?: string[]; firstDayOfWeek?: number; }; isAdvance?: boolean; } export declare const DatePicker: FC;