/** * Klaviyo API * The Klaviyo REST API. Please visit https://developers.klaviyo.com for more details. * * Contact: developers@klaviyo.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { TextStyleV0FontFamily } from './textStyleV0FontFamily'; export declare class BackInStockDynamicButtonTextStyles { 'fontFamily'?: TextStyleV0FontFamily; 'fontSize'?: number; /** * Font weight enumeration. */ 'fontWeight'?: BackInStockDynamicButtonTextStyles.FontWeightEnum | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900 | null; 'fontColor'?: string; 'fontStyle'?: string | null; 'textDecoration'?: string | null; 'letterSpacing'?: number; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace BackInStockDynamicButtonTextStyles { enum FontWeightEnum { NUMBER_100, NUMBER_200, NUMBER_300, NUMBER_400, NUMBER_500, NUMBER_600, NUMBER_700, NUMBER_800, NUMBER_900 } }