/** * Zeplin API * Access your resources in Zeplin * * Contact: support@zeplin.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { ComponentSectionVariantProperty } from './component-section-variant-property'; export declare const transformComponentSectionVariantToJSON: (value: ComponentSectionVariant) => any; export declare const transformJSONToComponentSectionVariant: (value: any) => ComponentSectionVariant; /** * Variant information for this component section * @export * @interface ComponentSectionVariant */ export interface ComponentSectionVariant { /** * List of variant properties that the components of this section take * @type {Array} * @memberof ComponentSectionVariant */ properties: Array; /** * Unique identifier used for this variant in the source design file * @type {string} * @memberof ComponentSectionVariant */ sourceId?: string; }