import { BetterAuthSession, BetterAuthOrganization } from '../types.mjs';

/** Get active organization from Better Auth context */
declare const getActiveOrganization: (ctx: unknown, session: BetterAuthSession | null) => Promise<BetterAuthOrganization | null>;

export { getActiveOrganization };
