import { SelectProps } from 'antd'; import React from 'react'; 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>; export default Resources;