/** * 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 { Padding } from './padding'; import { TextStyleV0 } from './textStyleV0'; export declare class CountdownTimerStyles { 'padding'?: Padding; 'backgroundColor'?: string | null; 'textStyles'?: TextStyleV0; 'cardColor'?: string; 'labelFontSize'?: number; /** * Font weight enumeration. */ 'labelFontWeight'?: CountdownTimerStyles.LabelFontWeightEnum | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace CountdownTimerStyles { enum LabelFontWeightEnum { NUMBER_100, NUMBER_200, NUMBER_300, NUMBER_400, NUMBER_500, NUMBER_600, NUMBER_700, NUMBER_800, NUMBER_900 } }