/** * 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 { CountdownTimerPropertiesConfiguration } from './countdownTimerPropertiesConfiguration'; export declare class CountdownTimerProperties { 'displayDevice'?: Array | Array<'both' | 'desktop' | 'mobile'>; 'classname'?: string | null; /** * Options for displaying a timer. */ 'clockFace'?: CountdownTimerProperties.ClockFaceEnum | 'flip' | 'simple'; /** * Options for timer completion animations. */ 'animation'?: CountdownTimerProperties.AnimationEnum | 'flash' | 'heartbeat' | 'pulse' | null; 'configuration': CountdownTimerPropertiesConfiguration; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace CountdownTimerProperties { enum DisplayDeviceEnum { Both, Desktop, Mobile } enum ClockFaceEnum { Flip, Simple } enum AnimationEnum { Flash, Heartbeat, Pulse } }