import { AuthService } from '../auth'; import { ICredential, CredentialType } from './credential'; import { RefreshableJwt, UserPassword } from '..'; export declare class PasswordCredentials implements ICredential { private credentials?; private jwt?; readonly type: CredentialType.Password; constructor(credentials?: UserPassword); getToken(): RefreshableJwt; authorize(authService: AuthService, organizer?: string): Promise; refreshToken(authService: AuthService, organizer?: string): Promise; } //# sourceMappingURL=password-credentials.d.ts.map