import { Description } from "./Description";
import { WebRowIslandDescription } from "./WebRowIslandDescription";
import { Type } from "./type";
/**
 * @hidden
 */
export declare class WebChildGridRowDescription extends Description {
    static $t: Type;
    protected get_type(): string;
    get type(): string;
    constructor();
    private h;
    get layout(): WebRowIslandDescription;
    set layout(a: WebRowIslandDescription);
    private n;
    get data(): any;
    set data(a: any);
    private l;
    get index(): number;
    set index(a: number);
    private j;
    get expanded(): boolean;
    set expanded(a: boolean);
}
