export class SplitView extends EmptyView {
    static from({ a, b, type, fraction }: {
        a: any;
        b: any;
        type?: string;
        fraction?: number;
    }): SplitView;
    constructor();
    set fraction(arg: any);
    set direction(arg: any);
    set childA(arg: any);
    set childB(arg: any);
    layout(): void;
    #private;
}
import EmptyView from "../../../src/view/elements/EmptyView.js";
//# sourceMappingURL=SplitView.d.ts.map