import { type FC } from 'react'; import { type TrivetTestCase, type TrivetTestCaseResult } from '@ironclad/trivet'; export type TestCaseTableProps = { testCases: TrivetTestCase[]; editingTestCaseId: string | undefined; testCaseResults: TrivetTestCaseResult[]; running: boolean; onAddTestCase: () => void; onDeleteTestCase: (id: string) => void; onSetEditingTestCase: (id: string | undefined) => void; onRunTestCase: (id: string, iterationCount?: number) => void; onDuplicateTestCase: (id: string) => void; }; export declare const TestCaseTable: FC; //# sourceMappingURL=TestCaseTable.d.ts.map