import type { BDDTestCase } from "./types"; interface BDDTableOfContentsProps { tests: BDDTestCase[]; activeTestId: string | null; onSelectTest: (testId: string) => void; } /** * BDDTableOfContents Component * * Navigation sidebar for jumping to specific test cases. */ export declare function BDDTableOfContents({ tests, activeTestId, onSelectTest, }: BDDTableOfContentsProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=BDDTableOfContents.d.ts.map