import TOSBase, { TosResponse } from '../base'; import { FileUncompressPrefixReplaced } from '../../TosExportEnum'; export interface CreateFileUncompressInput { bucket: string; Input: { Object: string; }; FileUncompressConfig: { Prefix: string; /** * @default 0 FileUncompressPrefixReplaced.NoExtraPrefix */ PrefixReplaced?: FileUncompressPrefixReplaced | number; }; Output: { Region: string; Bucket: string; }; } export interface CreateFileUncompressOutput { Code: string; Message: string; JobId: string; } /** * @private unstable method */ export declare function createFileUncompress(this: TOSBase, req: CreateFileUncompressInput): Promise>;