import * as z from 'zod';
export declare const IcrcAccountSchema: z.ZodObject<{
    owner: z.ZodString;
    subaccount: z.ZodOptional<z.ZodString>;
}, z.core.$strict>;
export type IcrcAccount = z.infer<typeof IcrcAccountSchema>;
export declare const IcrcAccountsSchema: z.ZodArray<z.ZodObject<{
    owner: z.ZodString;
    subaccount: z.ZodOptional<z.ZodString>;
}, z.core.$strict>>;
export type IcrcAccounts = z.infer<typeof IcrcAccountsSchema>;
