/**
 * AdvancedBilling
 *
 * This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ).
 */
import { Schema } from '../schema';
import { GroupBilling } from './groupBilling';
import { GroupTarget } from './groupTarget';
export interface GroupSettings {
    /** Attributes of the target customer who will be the responsible payer of the created subscription. Required. */
    target: GroupTarget;
    /** Optional attributes related to billing date and accrual. Note: Only applicable for new subscriptions. */
    billing?: GroupBilling;
    [key: string]: unknown;
}
export declare const groupSettingsSchema: Schema<GroupSettings>;
