import { SelectProps } from "antd"; import React from "react"; interface StartTimeProps extends SelectProps { locale?: string; slice?: number; selectProps?: SelectProps; timeObjChange?: any; } declare const StartTime: (props: StartTimeProps) => React.JSX.Element; export default StartTime;