import { ReactNode } from 'react'; export interface SidebarMoreProps { children?: ReactNode; label?: string; leadingIcon?: ReactNode; classNames?: { /** @deprecated Use `[data-slot="sidebar-more-trigger"]` instead. */ root?: string; /** @deprecated Use `[data-slot="sidebar-leading-icon"]` instead. */ leadingIcon?: string; /** @deprecated Use `[data-slot="sidebar-more-text"]` instead. */ text?: string; /** * Not deprecated: `Menu.Content` portals to `document.body`, so a * `[data-slot="menu-content"]` selector can't be scoped to just this * instance's dropdown — this prop remains the only way to target it. */ menuContent?: string; }; } export declare function SidebarMore({ children, label, leadingIcon, classNames }: SidebarMoreProps): import("react/jsx-runtime").JSX.Element | null; export declare namespace SidebarMore { var displayName: string; } //# sourceMappingURL=sidebar-more.d.ts.map