import type { Transport } from 'viem'; import { z } from 'zod'; declare const balanceSchema: z.ZodObject<{ balance: z.ZodCoercedBigInt; decimals: z.ZodNumber; unit: z.ZodString; }, z.core.$strip>; export type Balance = z.infer; export declare const getBalance: (client: ReturnType) => Promise; export {}; //# sourceMappingURL=getBalance.d.ts.map