import { default as React, CSSProperties } from 'react'; import { LEFT_VARIANT, RIGHT_VARIANT } from './constants'; interface GetRootProps { (props?: { style?: CSSProperties; }): { style: CSSProperties; }; } export type SidebarWrapperProps = { children?: React.ComponentType<{ getRootProps: GetRootProps; }>; variant?: typeof LEFT_VARIANT | typeof RIGHT_VARIANT; headerData?: unknown; }; declare function SidebarWrapper(props: SidebarWrapperProps): import("react/jsx-runtime").JSX.Element; export default SidebarWrapper; //# sourceMappingURL=SidebarHeader.d.ts.map