//#region src/modules/test.d.ts
/**
* @public
*/
interface TestCase {
input: INPUT;
expect: EXPECT;
}
/**
* @public
*/
declare function tableTest(testCases: TestCase[], checkFn: (testCase: TestCase) => any): void;
//#endregion
export { type TestCase, tableTest };