import type { ApiClient } from "../client.js";
export declare function getAllPresets(client: ApiClient): Promise<any>;
export declare function getPreset(client: ApiClient, presetId: string): Promise<any>;
export declare function createPreset(client: ApiClient, preset: any): Promise<any>;
export declare function updatePreset(client: ApiClient, preset: any): Promise<any>;
export declare function updatePresets(client: ApiClient, args: {
    presets: any[];
    spaceId: string;
    options?: {
        publish?: boolean;
    };
}): Promise<any>;
export declare function getComponentPresets(client: ApiClient, componentName: string): Promise<any>;
