/** * Internal dependencies */ import type { RequestUtils } from './index'; export interface User { username: string; password: string; } declare function login(this: RequestUtils, user?: User): Promise; export { login }; //# sourceMappingURL=login.d.ts.map