import { z } from 'zod';
export declare const Currency: z.ZodObject<{
    symbol: z.ZodString;
    unit: z.ZodString;
    decimals: z.ZodNumber;
    displayName: z.ZodString;
    address: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
    symbol: string;
    unit: string;
    decimals: number;
    displayName: string;
    address?: string | undefined;
}, {
    symbol: string;
    unit: string;
    decimals: number;
    displayName: string;
    address?: string | undefined;
}>;
export type Currency = z.infer<typeof Currency>;
