import { type Asset } from 'fuels';
export declare const getVerifiedAssets: () => Promise<Asset[]>;
export declare const getAssetIdAndDecimals: (symbol: string, assets: Asset[]) => Promise<{
    assetId: any;
    decimals: any;
}>;
export declare const getAllVerifiedSymbols: (assets: Asset[]) => Promise<any[]>;
export type FuelAgentAsset = {
    symbol: string;
    assetId: string;
    decimals: number;
};
export declare const getAllVerifiedFuelAssets: () => Promise<FuelAgentAsset[]>;
