import * as cog from '../cog'; import * as dashboardv2beta1 from '../dashboardv2beta1'; export declare class RowBuilder implements cog.Builder { protected readonly internal: dashboardv2beta1.RowsLayoutRowKind; constructor(); /** * Builds the object. */ build(): dashboardv2beta1.RowsLayoutRowKind; title(title: string): this; collapse(collapse: boolean): this; hideHeader(hideHeader: boolean): this; fillScreen(fillScreen: boolean): this; conditionalRendering(conditionalRendering: cog.Builder): this; repeat(repeat: cog.Builder): this; layout(layout: cog.Builder | cog.Builder | cog.Builder | cog.Builder): this; } export declare function row(title: string): RowBuilder;