import type { AbstractRootModel, FileLocation } from '../../util/types';
declare const FileSelector: (props: {
    location?: FileLocation;
    name?: string;
    description?: string;
    inline?: boolean;
    rootModel?: AbstractRootModel;
    setLocation: (param: FileLocation) => void;
    setName?: (str: string) => void;
}) => import("react/jsx-runtime").JSX.Element;
export default FileSelector;
