///
import { Theme } from "@mui/material/styles";
import { SxProps } from "@mui/system";
import { PropsWithFunctionChildren } from "../Root/Root";
import { DrawerAnchor } from "./InsetSidebarBuilder";
declare type DivProps = JSX.IntrinsicElements["div"];
export declare type InsetSidebarClassKey = "root" | "body";
export interface InsetSidebarProps extends DivProps {
anchor?: DrawerAnchor;
RootProps?: DivProps;
rootSx?: SxProps;
classes?: {
root?: string;
paper?: string;
};
sx?: SxProps;
}
export declare const InsetSidebar: ({ anchor, children, classes, RootProps, rootSx, ...props }: PropsWithFunctionChildren) => JSX.Element;
export {};