import React from "react"; interface ModuleWrapperProps { title?: JSX.Element; style?: React.CSSProperties; } export declare function ModuleWrapper(props: { children: JSX.Element | JSX.Element[]; primary?: boolean; }): JSX.Element; export declare class ModuleWrapperFull extends React.PureComponent { render(): JSX.Element; } export declare class ModuleWrapperLeft extends React.PureComponent { render(): JSX.Element; } export declare class ModuleWrapperRight extends React.PureComponent { render(): JSX.Element; } interface TabsWrapperState { active: string; } interface TabsWrapperProps { elements: { [name: string]: { title: string; content: JSX.Element; }; }; defaultActive?: string; } export declare class TabsWrapper extends React.PureComponent { state: TabsWrapperState; render(): JSX.Element; } export {};