zent
Version:
一套前端设计语言和基于React的实现
10 lines (9 loc) • 415 B
TypeScript
/// <reference types="react" />
import { ITimeRangePickerPropsWithDefault } from '../types';
import { ITimePickerProps } from '../TimePicker';
interface ITimeRangePickerBaseProps extends ITimeRangePickerPropsWithDefault {
PickerComponent: React.ComponentType<ITimePickerProps>;
seperator: string;
}
declare const TimeRangePickerBase: React.FC<ITimeRangePickerBaseProps>;
export default TimeRangePickerBase;