export declare class DbHeadline { /** * The variant attribute specifies the size of the headline. */ variant: '1' | '2' | '3' | '4' | '5' | '6'; /** * The pulse attribute determines whether to add a visual DB Pulse to the headline. */ pulse?: boolean; render(): any; }