import type { Config } from '@devvit/shared-types/Config.js'; import type { AppConfig } from '@devvit/shared-types/schemas/config-file.v1.js'; export type TestContext = { config: Config; appConfig?: AppConfig | undefined; }; export declare function runWithTestContext(context: TestContext, fn: () => T): T; export declare function getTestContext(): TestContext | undefined; export declare function installDevvitInterceptors(): void; //# sourceMappingURL=context.d.ts.map