import { SelectProps } from 'antd'; import React from 'react'; interface DurationProps extends SelectProps { locale?: string; slice?: number; selectProps?: SelectProps; timeObjChange?: any; duration?: any; usableTime?: any; startDate?: any; timeObj?: any; } declare const Duration: (props: DurationProps) => React.JSX.Element; export default Duration;