/// import { DockType, ReactAddon, ReactControl } from '../react/base'; import './dockPanel.less'; import { Style } from './style'; export declare const SpliterType: { resizable: string; fixed: string; none: string; }; export declare class DockPanel extends ReactAddon { dockType?: keyof typeof DockType; spliterType?: keyof typeof SpliterType; direction?: keyof typeof DockType; border?: boolean; title?: ReactControl; buttons?: ReactControl; panelStyle?: Style; children?: ReactControl; panelClass?: string; onRender?: (() => JSX.Element) | undefined; } export declare const DockPanelControl: any;