import React from "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): React.JSX.Element;
    RangerPicker: (props: TimeRangePickerProps) => React.JSX.Element;
};
export default TimePicker;
