import { SelectProps } from "antd"; //#region src/components/booking/materiels/duration/index.d.ts 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) => JSX.Element; //#endregion export { Duration };