import { Layout, _Layout } from "../layout"; export interface _AbsoluteLayout extends _Layout { resize(): void; stroke(items: T[]): void; populate(items?: T[]): void; } export declare class AbsoluteLayout extends Layout { static xtype: string; }