import { type ComponentPropsWithoutRef } from 'react'; type SidebarHeadProps = ComponentPropsWithoutRef<'header'> & { asChild?: boolean; href?: string; logoSrc: string; title: string; }; declare function SidebarHead({ asChild, children, className, href, logoSrc, title, ...props }: SidebarHeadProps): import("react/jsx-runtime").JSX.Element; export default SidebarHead; export type { SidebarHeadProps };