import type { GetAllAssets, GetAssetById, GetAssetByName, MigrateAsset } from "./assets.types.js";
export declare const getAllAssets: GetAllAssets;
export declare const getAssetByName: GetAssetByName;
export declare const migrateAsset: MigrateAsset;
export declare const getAssetById: GetAssetById;
export declare const getAsset: (assetName: string | undefined) => Promise<void>;
