import type { OAuth2TokenGrantResponse } from '@authup/common'; import type { Request } from 'routup'; import type { UserEntity } from '@authup/server-database'; import { AbstractGrant } from './abstract'; import type { Grant } from './type'; export declare class PasswordGrantType extends AbstractGrant implements Grant { run(request: Request): Promise; validate(request: Request): Promise; } //# sourceMappingURL=password.d.ts.map