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