import * as matsuri_hooks from 'matsuri-hooks'; import { LoginResponse } from './login.js'; interface GetTokenInput { userId: string; refreshToken: string; } declare const requestGetToken: (input: GetTokenInput) => Promise>>; export { requestGetToken };