/** * 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 HeaderBlockStyles { 'blockBackgroundColor'?: string | null; 'blockPaddingBottom'?: number | null; 'blockPaddingLeft'?: number | null; 'blockPaddingRight'?: number | null; 'blockPaddingTop'?: number | null; 'borderColor'?: string | null; 'borderRadius'?: number | null; /** * Border style. */ 'borderStyle'?: HeaderBlockStyles.BorderStyleEnum | 'dashed' | 'dotted' | 'groove' | 'inset' | 'none' | 'outset' | 'ridge' | 'solid' | null; 'borderWidth'?: number | null; 'color'?: string | null; /** * Header block desktop layout. */ 'desktopLayout'?: HeaderBlockStyles.DesktopLayoutEnum | 'centered' | 'inline' | 'links' | 'stacked' | null; 'fontFamily'?: string | null; 'fontSize'?: number | null; /** * Font style. */ 'fontStyle'?: HeaderBlockStyles.FontStyleEnum | 'italic' | 'normal' | null; 'fontWeight'?: string | null; 'innerPaddingBottom'?: number | null; 'innerPaddingLeft'?: number | null; 'innerPaddingRight'?: number | null; 'innerPaddingTop'?: number | null; /** * Text Alignment. */ 'itemAlign'?: HeaderBlockStyles.ItemAlignEnum | 'center' | 'left' | 'right' | null; 'itemSpacing'?: number | null; /** * Header block item spacing type. */ 'itemSpacingType'?: HeaderBlockStyles.ItemSpacingTypeEnum | 'auto' | 'manual' | null; 'letterSpacing'?: number | null; /** * Text Alignment. */ 'logoAlign'?: HeaderBlockStyles.LogoAlignEnum | 'center' | 'left' | 'right' | null; 'logoLinkSpacing'?: number | null; /** * Header block mobile layout. */ 'mobileLayout'?: HeaderBlockStyles.MobileLayoutEnum | 'inline' | 'links' | 'links-stacked' | 'logo-stacked' | 'stacked' | null; 'mobileSpacing'?: number | null; 'mobileWrap'?: boolean | null; 'textDecoration'?: string | null; /** * Vertical alignment. */ 'verticalAlign'?: HeaderBlockStyles.VerticalAlignEnum | 'baseline' | 'bottom' | 'middle' | 'top' | null; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace HeaderBlockStyles { enum BorderStyleEnum { Dashed, Dotted, Groove, Inset, None, Outset, Ridge, Solid } enum DesktopLayoutEnum { Centered, Inline, Links, Stacked } enum FontStyleEnum { Italic, Normal } enum ItemAlignEnum { Center, Left, Right } enum ItemSpacingTypeEnum { Auto, Manual } enum LogoAlignEnum { Center, Left, Right } enum MobileLayoutEnum { Inline, Links, LinksStacked, LogoStacked, Stacked } enum VerticalAlignEnum { Baseline, Bottom, Middle, Top } }