import type { CSSProperties, ReactElement } from 'react';
import type { SplitterElementPropTypes } from '../SplitterElement/index.js';
import type { SplitterLayoutPropTypes } from './types.js';
interface ConcatSplitterElements {
    children: SplitterLayoutPropTypes['children'];
    width: CSSProperties['width'];
    height: CSSProperties['height'];
    vertical: boolean;
    onResize: SplitterLayoutPropTypes['onResize'] | undefined;
}
export declare const useConcatSplitterElements: (concatSplitterElements: ConcatSplitterElements) => ReactElement<SplitterElementPropTypes, string | import("react").JSXElementConstructor<any>> | ReactElement<SplitterElementPropTypes, string | import("react").JSXElementConstructor<any>>[];
export {};
