UNPKG

210 BTypeScriptView Raw
1import { FC } from 'react';
2import { ControlProps, DateValue, DateConfig } from './types';
3export declare type DateProps = ControlProps<DateValue> & DateConfig;
4export declare const DateControl: FC<DateProps>;