import type { ReactNode, ComponentType, MouseEvent as ReactMouseEvent, CSSProperties } from "react"; export interface SidebarSubLinkProps { href: string; children: ReactNode; icon?: ReactNode; LinkComponent?: ComponentType; linkProps?: Record; className?: string; onClick?: (e: ReactMouseEvent) => void; animationOrder?: number; animationState?: 'entering' | 'leaving' | 'static'; style?: CSSProperties; } export declare function SidebarSubLink({ href, children, icon, LinkComponent, linkProps, className, onClick, animationOrder, animationState, style }: SidebarSubLinkProps): import("react/jsx-runtime").JSX.Element; export declare namespace SidebarSubLink { var displayName: string; } //# sourceMappingURL=SidebarSubLink.d.ts.map