tdesign-react
Version:
TDesign Component for React
8 lines (7 loc) • 293 B
TypeScript
import { FC } from 'react';
import { TdTimeRangePickerProps } from './type';
import { StyledProps } from '../common';
export interface TimeRangePickerProps extends TdTimeRangePickerProps, StyledProps {
}
declare const TimeRangePicker: FC<TimeRangePickerProps>;
export default TimeRangePicker;