/**
 * Runs TSTyche in the same process, streaming error messages and test results to the `stderr` and `stdout` in real-time.
 *
 * @returns A promise that resolves if the test run is successful and rejects if it fails.
 */
declare function tstyche(template: TemplateStringsArray, ...substitutions: Array<string>): Promise<void>;

export { tstyche as default };
