import { default as React } from 'react'; import { PossibleSelectValue } from '../../../InputSelect'; import { ItemWithValue } from '../../utils'; import { useResourcePathInfos } from '../hooks'; export declare const InputResourceSelector: React.FC<{ value?: ItemWithValue["value"]; pathKey: string; infos: ReturnType["infos"]; onSelect?: (selected: PossibleSelectValue) => void; }>;