quick-ui-design
Version:
A Quick UI library for user interface design with React fast and easy.
10 lines (9 loc) • 327 B
TypeScript
import { TimeRangePickerProps } from 'antd';
import { FC } from 'react';
import { TIME_PICKER_RANGE } from '../../../Types';
export interface ITimeRangePicker {
ctype: typeof TIME_PICKER_RANGE;
props: TimeRangePickerProps;
}
declare const TimeRangePicker: FC<ITimeRangePicker>;
export default TimeRangePicker;