/** * 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. */ export declare class HeadingStyleStyles { 'color'?: string | null; 'fontFamily'?: string | null; 'fontSize'?: number | null; /** * Font style. */ 'fontStyle'?: HeadingStyleStyles.FontStyleEnum | 'italic' | 'normal' | null; 'fontWeight'?: string | null; 'letterSpacing'?: number | null; 'lineHeight'?: number | null; 'marginBottom'?: number | null; 'mobileFontSize'?: number | null; 'mobileLineHeight'?: number | null; /** * Text Alignment. */ 'textAlign'?: HeadingStyleStyles.TextAlignEnum | 'center' | 'left' | 'right' | null; 'textDecoration'?: string | null; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace HeadingStyleStyles { enum FontStyleEnum { Italic, Normal } enum TextAlignEnum { Center, Left, Right } }