import type { FileLocation } from '../../util/types';
declare const UrlChooser: ({ location, label, style, setLocation, }: {
    location?: FileLocation;
    label?: string;
    style?: Record<string, unknown>;
    setLocation: (arg: FileLocation) => void;
}) => import("react/jsx-runtime").JSX.Element;
export default UrlChooser;
