import * as React from 'react';
import { Layout } from '../layout';
import { Pane } from './Pane';
import './styles/index.less';
export interface BoxPanelProps {
    prefixCls?: string | undefined;
    className?: string | undefined;
    direction?: Layout.direction;
    defaultSize?: number | string;
    flex?: number;
    zIndex?: number;
    style?: React.CSSProperties;
    children?: React.ReactNode | React.ReactNode[];
}
export type BoxPanel = React.ForwardRefExoticComponent<BoxPanelProps & React.RefAttributes<HTMLDivElement>> & {
    Pane: typeof Pane;
};
export declare const BoxPanel: BoxPanel;
//# sourceMappingURL=index.d.ts.map