/** * @param {{ * outbox: string * authorization?: string * }} param0 * @returns {Promise>} */ export function run({ authorization, outbox }: { outbox: string; authorization?: string; }): Promise>; declare const _default: import("../../test-utils").TestCase; export default _default; export type Input = { outbox: string; authorization?: string | undefined; }; export type Outcome = "passed" | "failed" | "inapplicable"; //# sourceMappingURL=testCase.d.ts.map