export declare class CsmError extends Error {
    status: number;
    constructor(message: string, status?: number);
}
/** Unwrap `{ success, data }` envelope if present; otherwise return body as-is. */
export declare function unwrap(body: any): any;
export declare function csmGet(path: string): Promise<any>;
export declare function csmPost(path: string, json: any): Promise<any>;
//# sourceMappingURL=client.d.ts.map