import { ComponentPropsWithoutRef } from 'react'; /** * Props for the PageSidebarHeader component * @extends ComponentPropsWithoutRef<"div"> */ export type PageSidebarHeaderProps = ComponentPropsWithoutRef<"div">; /** * PageSidebarHeader component for creating header sections within sidebars. * * Features: * - Container for sidebar header content * - Automatic visibility handling based on sidebar collapsed state * - Supports all standard div props * - Context-aware styling * * @example * * * Sidebar Title * * */ export declare const PageSidebarHeader: import('react').ForwardRefExoticComponent, HTMLDivElement>, "ref"> & import('react').RefAttributes>;