import React from "react"; import { SelectProps } from "antd"; //#region src/components/booking/materiels/resources/index.d.ts interface ResourcesProps extends SelectProps { locale?: string; resources?: any[]; watch?: any[]; resourcesChange?: any; getResources?: any; currentDate?: string; cacheItem?: any; selectProps?: SelectProps; } declare const Resources: React.ForwardRefExoticComponent>; //#endregion export { Resources };