import { UIObject } from "./UIObject";
import { UIRectangle } from "./UIRectangle";
export declare class UILayoutGrid extends UIObject {
    _frame: UIRectangle;
    _subframes: UILayoutGrid[];
    constructor(frame: UIRectangle);
    splitXInto(numberOfFrames: number): void;
}
