import { type ReactNode } from 'react'; export type IndexScrollMenuAlignment = 'left' | 'center' | 'right'; export type IndexScrollMenuSection = { id: string; title: string; children: ReactNode; }; export type IndexScrollMenuProps = { alignment?: IndexScrollMenuAlignment; className?: string; contentLabel?: string; footer?: ReactNode; initialOpen?: boolean; intro?: ReactNode; label?: string; sections?: IndexScrollMenuSection[]; title?: ReactNode; }; export declare const IndexScrollMenu: ({ alignment, className, contentLabel, footer, initialOpen, intro, label, sections, title, }: IndexScrollMenuProps) => import("react/jsx-runtime").JSX.Element;