import type { AuthorizationHeader } from 'hapic';
import { BaseAPI } from '../base';
import type { BaseAPIContext } from '../type';
export declare class UserInfoAPI extends BaseAPI {
    constructor(context?: BaseAPIContext);
    /**
     * @throws Error
     * @param header
     */
    get<T extends Record<string, any> = Record<string, any>>(header?: string | AuthorizationHeader): Promise<T>;
}
