UNPKG

@ui5/webcomponents-react

Version:

React Wrapper for UI5 Web Components and additional components

13 lines (12 loc) 740 B
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 {};