export default testCase; /** * type definition for input to each test run */ export type Input = { outbox: string; authorization?: string | undefined; }; /** * type definition for known outcomes of each test run. */ export type Outcome = "failed" | "inapplicable" | "passed"; /** * @type {import("../../test-utils").TestCase} */ declare const testCase: import("../../test-utils").TestCase; //# sourceMappingURL=testCase.d.ts.map