import React from 'react'; declare type ResourceSelectorProps = { value?: Array | string | number; onChange?: (value: Array) => void; className?: string; style?: React.CSSProperties; showSearch?: boolean; }; declare const ResourceSelector: (props: ResourceSelectorProps) => React.JSX.Element; export default ResourceSelector;