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