/** * 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 ButtonBlockStyles { 'backgroundColor'?: string | null; 'blockBackgroundColor'?: string | null; 'blockPaddingBottom'?: number | null; 'blockPaddingLeft'?: number | null; 'blockPaddingRight'?: number | null; 'blockPaddingTop'?: number | null; 'borderColor'?: string | null; 'borderRadius'?: number | null; /** * Border style. */ 'borderStyle'?: ButtonBlockStyles.BorderStyleEnum | 'dashed' | 'dotted' | 'groove' | 'inset' | 'none' | 'outset' | 'ridge' | 'solid' | null; 'borderWidth'?: number | null; 'color'?: string | null; 'dropShadowColor'?: string | null; 'fontFamily'?: string | null; 'fontSize'?: number | null; /** * Font style. */ 'fontStyle'?: ButtonBlockStyles.FontStyleEnum | 'italic' | 'normal' | null; 'fontWeight'?: string | null; 'innerPaddingBottom'?: number | null; 'innerPaddingLeft'?: number | null; 'innerPaddingRight'?: number | null; 'innerPaddingTop'?: number | null; 'letterSpacing'?: number | null; 'mobileStretchContent'?: boolean | null; 'stretch'?: boolean | null; /** * Text Alignment. */ 'textAlign'?: ButtonBlockStyles.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 ButtonBlockStyles { enum BorderStyleEnum { Dashed, Dotted, Groove, Inset, None, Outset, Ridge, Solid } enum FontStyleEnum { Italic, Normal } enum TextAlignEnum { Center, Left, Right } }