/// <reference types="react" />
import type { TimePickerProps as AntdTimePickerProps, TimeRangePickerProps as AntdRangePickerProps } from "antd/es/time-picker";
import "./style.scss";
export type TimePickerProps = AntdTimePickerProps;
export type TimeRangePickerProps = AntdRangePickerProps;
declare const TimePicker: {
    (props: TimePickerProps): JSX.Element;
    RangerPicker: (props: TimeRangePickerProps) => JSX.Element;
};
export default TimePicker;
