import * as React from 'react';
import { QueryResultBundle, QueryBundleRequest } from '../../../utils/synapseTypes';
export declare const DOWNLOAD_OPTIONS_CONTAINER_CLASS = "SRC-download-options-container";
declare type DownloadOptionsProps = {
    onDownloadFiles: () => void;
    isUnauthenticated?: boolean;
    isFileView?: boolean;
    darkTheme?: boolean;
    queryResultBundle?: QueryResultBundle;
    queryBundleRequest: QueryBundleRequest;
};
export declare const DOWNLOAD_FILES_MENU_TEXT = "Add To Download List";
export declare const DownloadOptions: React.FunctionComponent<DownloadOptionsProps>;
export {};
