/** * 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 HeaderLinkSubBlock { 'id'?: string | null; 'type': HeaderLinkSubBlock.TypeEnum | 'header_link_bar_button'; 'backgroundColor'?: string | null; 'content'?: string | null; 'dropShadowColor'?: string | null; 'href'?: string | null; /** * Show on. */ 'showOn'?: HeaderLinkSubBlock.ShowOnEnum | 'all' | 'desktop' | 'mobile' | null; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace HeaderLinkSubBlock { enum TypeEnum { HeaderLinkBarButton } enum ShowOnEnum { All, Desktop, Mobile } }