/**
 * AdvancedBilling
 *
 * This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ).
 */
import { Schema } from '../schema.js';
import { CreateSegmentSegmentProperty1Value } from './containers/createSegmentSegmentProperty1Value.js';
import { CreateSegmentSegmentProperty2Value } from './containers/createSegmentSegmentProperty2Value.js';
import { CreateSegmentSegmentProperty3Value } from './containers/createSegmentSegmentProperty3Value.js';
import { CreateSegmentSegmentProperty4Value } from './containers/createSegmentSegmentProperty4Value.js';
import { CreateOrUpdateSegmentPrice } from './createOrUpdateSegmentPrice.js';
import { PricingScheme } from './pricingScheme.js';
export interface CreateSegment {
    /** A value that will occur in your events that you want to bill upon. The type of the value depends on the property type in the related event based billing metric. */
    segmentProperty1Value?: CreateSegmentSegmentProperty1Value;
    /** A value that will occur in your events that you want to bill upon. The type of the value depends on the property type in the related event based billing metric. */
    segmentProperty2Value?: CreateSegmentSegmentProperty2Value;
    /** A value that will occur in your events that you want to bill upon. The type of the value depends on the property type in the related event based billing metric. */
    segmentProperty3Value?: CreateSegmentSegmentProperty3Value;
    /** A value that will occur in your events that you want to bill upon. The type of the value depends on the property type in the related event based billing metric. */
    segmentProperty4Value?: CreateSegmentSegmentProperty4Value;
    /** The identifier for the pricing scheme. See [Product Components](https://help.chargify.com/products/product-components.html) for an overview of pricing schemes. */
    pricingScheme: PricingScheme;
    prices?: CreateOrUpdateSegmentPrice[];
    [key: string]: unknown;
}
export declare const createSegmentSchema: Schema<CreateSegment>;
//# sourceMappingURL=createSegment.d.ts.map