import type { BDDTestCase, BDDLanguage } from "./types"; interface BDDTestCardProps { test: BDDTestCase; index: number; isOpen: boolean; onToggle: () => void; language: BDDLanguage; } /** * BDDTestCard Component * * Displays a single BDD test case with collapsible content. * Features: * - Priority badge * - Type indicator * - Tags display * - Gherkin scenario with syntax highlighting * - Copy to clipboard * - Expected results list */ export declare function BDDTestCard({ test, index, isOpen, onToggle, language }: BDDTestCardProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=BDDTestCard.d.ts.map