export declare class OSSClientError extends Error {
    code: string;
    status: number;
    requestId?: string;
    hostId?: string;
    nextAppendPosition?: string;
    constructor(status: number, code: string, message: string, requestId?: string, hostId?: string);
}
