/**
 * AdvancedBilling
 *
 * This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ).
 */
import { Schema } from '../schema';
import { InvoiceTaxBreakout } from './invoiceTaxBreakout';
import { ProformaInvoiceTaxSourceType } from './proformaInvoiceTaxSourceType';
export interface ProformaInvoiceTax {
    uid?: string;
    title?: string;
    sourceType?: ProformaInvoiceTaxSourceType;
    percentage?: string;
    taxableAmount?: string;
    taxAmount?: string;
    lineItemBreakouts?: InvoiceTaxBreakout[];
    [key: string]: unknown;
}
export declare const proformaInvoiceTaxSchema: Schema<ProformaInvoiceTax>;
