import { SessionAuthObject } from "@clerk/backend";
import { PendingSessionOptions } from "@clerk/types";

//#region src/server/auth.d.ts
declare function auth(options?: PendingSessionOptions): Promise<SessionAuthObject>;
//#endregion
export { auth };