import { PaypalV2Country } from '../PaypalV2Country.js';
export type PaypalV2LoadIssueBillingKeyUIBypass = {
    style?: {
        color?: 'gold' | 'blue' | 'silver' | 'white' | 'black';
        height?: number;
        label?: 'paypal' | 'checkout' | 'buynow' | 'pay' | 'installment' | 'subscribe' | 'donate';
        layout?: 'vertical' | 'horizontal';
        shape?: 'rect' | 'pill';
        tagline?: boolean;
    };
    shipping_address?: {
        recipient_name?: string;
        line1: string;
        line2?: string;
        city: string;
        state?: string;
        postal_code?: string;
        country_code: PaypalV2Country;
    };
    additional_data?: {
        key: string;
        value: string;
    }[];
};
