import type { ApiClient } from "../client.js";
export declare function getAllAssets(client: ApiClient, args: {
    spaceId: string;
    search?: string;
}): Promise<any>;
export declare function getAssetById(client: ApiClient, args: {
    spaceId: string;
    assetId: number;
}): Promise<any>;
export declare function getAssetByName(client: ApiClient, args: {
    spaceId: string;
    fileName: string;
}): Promise<any>;
