/**
 * AdvancedBilling
 *
 * This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ).
 */
import { Schema } from '../../schema';
/** This is a container type for one-of types. */
export type SegmentSegmentProperty2Value = string | number | boolean;
export declare const segmentSegmentProperty2ValueSchema: Schema<SegmentSegmentProperty2Value>;
export declare namespace SegmentSegmentProperty2Value {
    /**
     * Validation method to narrow down union type to string type case.
     *
     * This is String case.
     */
    function isString(value: unknown): value is string;
    /**
     * Validation method to narrow down union type to number type case.
     *
     * This is Precision case.
     */
    function isNumber(value: unknown): value is number;
    /**
     * Validation method to narrow down union type to boolean type case.
     *
     * This is Boolean case.
     */
    function isBoolean(value: unknown): value is boolean;
}
