/// import { DatePickerProps as AMDatePickerProps } from 'antd-mobile'; import './index.less'; export interface DatePickerProps extends Omit { value?: string | Array; defaultValue?: string | Array; placeholder?: string | string[]; onChange?: any; dateType?: 'specific' | 'section'; picker?: 'year' | 'month' | 'day' | 'hour' | 'minute' | 'second' | 'week' | 'week-day'; format?: string; dateFormat?: string; disabled?: boolean; readOnly?: boolean; allowClear?: boolean; } export declare const DatePicker: import("react").ForwardRefExoticComponent & import("react").RefAttributes>>; export declare const UdpDateTimePicker: import("react").ForwardRefExoticComponent & import("react").RefAttributes>>;