import * as React from "react"; import * as react_jsx_runtime82 from "react/jsx-runtime"; import { VariantProps } from "class-variance-authority"; import * as class_variance_authority_types20 from "class-variance-authority/types"; //#region src/components/legal/molecules/LegalTOC.d.ts interface TocItem { href: string; label: React.ReactNode; } declare const tocVariants: (props?: ({ variant?: "sidebar" | "inline" | null | undefined; size?: "sm" | "md" | null | undefined; } & class_variance_authority_types20.ClassProp) | undefined) => string; type LegalTOCProps = { items: TocItem[]; activeHref?: string; onNavigate?: (href: string) => void; } & VariantProps & React.HTMLAttributes; declare function LegalTOC({ items, activeHref, onNavigate, variant, size, className, ...props }: LegalTOCProps): react_jsx_runtime82.JSX.Element; //#endregion export { LegalTOC, TocItem }; //# sourceMappingURL=LegalTOC.d.ts.map