import { TestData } from '../../../types.js';
interface TestSelectProps {
    tests: TestData[];
    selectedTestId: string;
    onChangeTest: (testId: string) => void;
}
export default function TestSelect(props: TestSelectProps): JSX.Element;
export {};
