import type { ServiceContainerLike } from "../contracts/serviceContainer"; import type { AuthUser } from "./authContext"; import type { AuthGuard } from "./guard"; declare class BasicAuthGuard implements AuthGuard { private readonly container; constructor(container: ServiceContainerLike); resolve(request: Request): Promise; } export { BasicAuthGuard };