import React from 'react';
interface Props {
    children?: React.ReactNode;
    className?: string;
}
declare const SidebarContent: React.ForwardRefExoticComponent<Props & React.RefAttributes<HTMLDivElement>>;
export default SidebarContent;
export { SidebarContent as CDBSidebarContent };
