/**
 * AdvancedBilling
 *
 * This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ).
 */
import { Schema } from '../schema';
import { TaxConfigurationKind } from './taxConfigurationKind';
import { TaxDestinationAddress } from './taxDestinationAddress';
export interface TaxConfiguration {
    kind?: TaxConfigurationKind;
    destinationAddress?: TaxDestinationAddress;
    /** Returns `true` when Chargify has been properly configured to charge tax using the specified tax system. More details about taxes: https://maxio.zendesk.com/hc/en-us/articles/24287012608909-Taxes-Overview */
    fullyConfigured?: boolean;
    [key: string]: unknown;
}
export declare const taxConfigurationSchema: Schema<TaxConfiguration>;
