/**
 * AdvancedBilling
 *
 * This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ).
 */
import { Schema } from '../schema';
import { IncludeOption } from './includeOption';
/** Warning: When updating a metafield's scope attribute, all scope attributes must be passed. Partially complete scope attributes will override the existing settings. */
export interface MetafieldScope {
    /** Include (1) or exclude (0) metafields from the csv export. */
    csv?: IncludeOption;
    /** Include (1) or exclude (0) metafields from invoices. */
    invoices?: IncludeOption;
    /** Include (1) or exclude (0) metafields from statements. */
    statements?: IncludeOption;
    /** Include (1) or exclude (0) metafields from the portal. */
    portal?: IncludeOption;
    /** Include (1) or exclude (0) metafields from being viewable by your ecosystem. */
    publicShow?: IncludeOption;
    /** Include (1) or exclude (0) metafields from being edited by your ecosystem. */
    publicEdit?: IncludeOption;
    hosted?: string[];
    [key: string]: unknown;
}
export declare const metafieldScopeSchema: Schema<MetafieldScope>;
