import { z } from 'zod';
export declare const withHoldingsInterfaceSchema: z.ZodObject<{
    amount: z.ZodNumber;
    code: z.ZodString;
    description: z.ZodOptional<z.ZodString>;
    notes: z.ZodOptional<z.ZodString>;
    label: z.ZodOptional<z.ZodString>;
    bankCountry: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
    code: string;
    amount: number;
    label?: string | undefined;
    description?: string | undefined;
    bankCountry?: string | undefined;
    notes?: string | undefined;
}, {
    code: string;
    amount: number;
    label?: string | undefined;
    description?: string | undefined;
    bankCountry?: string | undefined;
    notes?: string | undefined;
}>;
