zent
Version:
一套前端设计语言和基于React的实现
9 lines (8 loc) • 365 B
TypeScript
/// <reference types="react" />
import { ISingleTimePickerPropsWithDefault, ITimePanelProps } from '../types';
interface ITimePickerBaseProps extends ISingleTimePickerPropsWithDefault {
ContentComponent: React.ComponentType<ITimePanelProps>;
seperator?: string;
}
declare const TimePickerBase: React.FC<ITimePickerBaseProps>;
export default TimePickerBase;