import { DownloadDataInput } from '../../types';
import { StorageDownloadDataOutput, StorageItemWithKey, StorageItemWithPath } from '../../../../types';
import { DownloadDataInput as DownloadDataWithPathInputWithAdvancedOptions } from '../../../../internals/types/inputs';
export declare const downloadData: (input: DownloadDataInput | DownloadDataWithPathInputWithAdvancedOptions) => {
    readonly state: import("../../../../types").TransferTaskState;
    cancel: (message?: string) => void;
    result: Promise<StorageDownloadDataOutput<StorageItemWithKey | StorageItemWithPath>>;
};
