/** * 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. */ export declare const transformVerticalGridToJSON: (value: VerticalGrid) => any; export declare const transformJSONToVerticalGrid: (value: any) => VerticalGrid; /** * * @export * @interface VerticalGrid */ export interface VerticalGrid { /** * * @type {number} * @memberof VerticalGrid */ gutterWidth: number; /** * * @type {number} * @memberof VerticalGrid */ columnWidth: number; /** * * @type {number} * @memberof VerticalGrid */ numberOfCols: number; /** * * @type {boolean} * @memberof VerticalGrid */ guttersOnOutside: boolean; }