export declare enum BackgroundColor { none = "none", emphasis = "emphasis" } export declare class AmpContentTextSection { /** * Heading text for the section */ heading: string; /** * The background color of the section */ backgroundColor: BackgroundColor; render(): any; }