/**
 * AdvancedBilling
 *
 * This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ).
 */
import { Schema } from '../schema';
export interface InvoiceTaxComponentBreakout {
    taxRuleId?: number;
    percentage?: string;
    countryCode?: string;
    subdivisionCode?: string;
    taxAmount?: string;
    taxableAmount?: string;
    taxExemptAmount?: string;
    nonTaxableAmount?: string;
    taxName?: string;
    taxType?: string;
    rateType?: string;
    taxAuthorityType?: number;
    stateAssignedNo?: string;
    taxSubType?: string;
    [key: string]: unknown;
}
export declare const invoiceTaxComponentBreakoutSchema: Schema<InvoiceTaxComponentBreakout>;
