import { AuthObject } from '@clerk/backend'; import { LoaderOptions } from './types.js'; import '@clerk/types'; type GetAuthReturn = Promise; type GetAuthOptions = Pick; declare function getAuth(request: Request, opts?: GetAuthOptions): GetAuthReturn; export { getAuth };