import { HTMLProps, ReactNode } from 'react';
import { LEFT_VARIANT, RIGHT_VARIANT } from './constants';
type GetRootProps = () => HTMLProps<HTMLDivElement>;
export type SidebarWrapperProps = {
    children?: (props: {
        getRootProps: GetRootProps;
        data: any;
    }) => ReactNode;
    variant?: typeof LEFT_VARIANT | typeof RIGHT_VARIANT;
    headerData?: any;
};
declare const SidebarWrapper: {
    (props: SidebarWrapperProps): import("react/jsx-runtime").JSX.Element;
    secretKey: string;
};
export default SidebarWrapper;
