import TabPanel from './TabPanel';
export type Orientation = 'Vertical' | 'Horizontal';
export default interface Panel {
    orientation: Orientation;
    size?: number;
    children: (Panel | TabPanel)[];
}
//# sourceMappingURL=Panel.d.ts.map