/**
 * Apideck
 * The Apideck OpenAPI Spec: SDK Optimized
 *
 * The version of the OpenAPI document: 10.13.0
 * Contact: support@apideck.com
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
/**
 *
 * @export
 * @interface SupportedProperty
 */
export interface SupportedProperty {
    /**
     * Name of the property in our Unified API.
     * @type {string}
     * @memberof SupportedProperty
     */
    unified_property?: string;
    /**
     * List of child properties of the unified property.
     * @type {Array<SupportedProperty>}
     * @memberof SupportedProperty
     */
    child_properties?: Array<SupportedProperty>;
}
export declare function SupportedPropertyFromJSON(json: any): SupportedProperty;
export declare function SupportedPropertyFromJSONTyped(json: any, ignoreDiscriminator: boolean): SupportedProperty;
export declare function SupportedPropertyToJSON(value?: SupportedProperty | null): any;
