import { InternalBaseComponentProps } from '../internal/hooks/use-base-component'; import { SomeRequired } from '../internal/types'; import { SplitPanelProps } from './interfaces'; export type SplitPanelImplementationProps = SomeRequired & InternalBaseComponentProps; export declare function SplitPanelImplementation({ __internalRootRef, header, children, hidePreferencesButton, closeBehavior, i18nStrings, ariaLabel, headerActions, headerBefore, headerDescription, headerInfo, ...restProps }: SplitPanelImplementationProps): JSX.Element; export declare const createWidgetizedSplitPanel: (Loader?: typeof SplitPanelImplementation | undefined) => typeof SplitPanelImplementation;