/** * Utility for building complex grid area maps in a declarative fashion. */ export type AreaMatrix = Array>; export interface AreaBuilderOptions { fill?: string; } export declare class GridAreaBuilder { private matrix; private fill; constructor(rows: number, columns: number, options?: AreaBuilderOptions); place(name: string, rowStart: number, columnStart: number, rowSpan?: number, columnSpan?: number): this; toTemplateAreas(): string[]; } //# sourceMappingURL=areas.d.ts.map