/** * Supply response types and codec */ export interface SupplyValue { readonly total: bigint; readonly circulating: bigint; readonly nonCirculating: bigint; readonly nonCirculatingAccounts: string[]; } export interface SupplyResponse { readonly context: { readonly slot: number; }; readonly value: SupplyValue; } export declare const SupplyResponseCodec: import("../../codec").BaseCodec; /** * Creates a SupplyResponse from raw RPC data */ export declare function createSupplyResponse(raw: unknown): SupplyResponse;