import * as cog from '../cog'; import * as dashboardv2beta1 from '../dashboardv2beta1'; export declare class GridItemBuilder implements cog.Builder { protected readonly internal: dashboardv2beta1.GridLayoutItemKind; constructor(); /** * Builds the object. */ build(): dashboardv2beta1.GridLayoutItemKind; x(x: number): this; y(y: number): this; width(width: number): this; height(height: number): this; repeat(repeat: cog.Builder): this; name(name: string): this; } export declare function gridItem(name: string): GridItemBuilder;