import type { ApiClient } from "../client.js";
export declare function getAllSpaces(client: ApiClient): Promise<any>;
export declare function getSpace(client: ApiClient, spaceId: string): Promise<any>;
export declare function updateSpace(client: ApiClient, args: {
    spaceId: string;
    params: Record<string, any>;
}): Promise<any>;
