export type AuthSessionResolverLike = { api: { getSession: (opts: { headers: Headers; }) => Promise; }; }; export type BunderstackAppLike = { auth: unknown; }; /** * Mock the auth session resolver on a Bunderstack app instance for unit testing. */ export declare function mockAuthSession(app: BunderstackAppLike, resolver: (opts: { headers: Headers; }) => Promise<{ user: TUser; session?: { activeOrganizationId?: string | null; } | null; } | null>): void; //# sourceMappingURL=testing.d.ts.map