/// <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;
