import React, { type ReactNode } from 'react'; import { type IntrinsicAttributes } from './constants'; interface ContentContainerProps extends IntrinsicAttributes { /** @property {boolean} [$sticky=true] only scroll the body content, keep the header and footer pinned to the container top/bottom */ $sticky?: boolean; } export declare const SidebarContentContainer: ({ children, ...props }: { children?: ReactNode; } & Partial>) => React.JSX.Element; export {}; //# sourceMappingURL=SidebarContentContainer.d.ts.map