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