type Item = { id: string; title: string; subtitle?: string; icon: string; static?: boolean; }; type Props = { items: Item[]; onClick?: (id: string) => void; direction?: 'left' | 'right'; className?: string; isMobile?: boolean; position?: 'static' | 'fixed'; activeId?: string | null; }; export declare const RadialNavigation: ({ onClick, items, direction, className, isMobile, position, activeId, }: Props) => import("react/jsx-runtime").JSX.Element; export {};