/**
 * AdvancedBilling
 *
 * This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ).
 */
import { Schema } from '../../schema';
import { CreateComponentPricePoint } from '../createComponentPricePoint';
import { CreatePrepaidUsageComponentPricePoint } from '../createPrepaidUsageComponentPricePoint';
/** This is a container type for any-of types. */
export type CreateComponentPricePointsRequestPricePoints = CreateComponentPricePoint | CreatePrepaidUsageComponentPricePoint;
export declare const createComponentPricePointsRequestPricePointsSchema: Schema<CreateComponentPricePointsRequestPricePoints>;
export declare namespace CreateComponentPricePointsRequestPricePoints {
    /**
     * Validation method to narrow down union type to CreateComponentPricePoint type case.
     *
     * This is Create Component Price Point case.
     */
    function isCreateComponentPricePoint(value: unknown): value is CreateComponentPricePoint;
    /**
     * Validation method to narrow down union type to CreatePrepaidUsageComponentPricePoint type case.
     *
     * This is Create Prepaid Usage Component Price Point case.
     */
    function isCreatePrepaidUsageComponentPricePoint(value: unknown): value is CreatePrepaidUsageComponentPricePoint;
}
