import { ServiceNowInstance } from "../ServiceNowInstance.js"; import { SNRequestBase } from "../SNRequestBase.js"; import { IUser } from "./model/IUser.js"; export declare class UserRequest extends SNRequestBase { constructor(instance: ServiceNowInstance); getUser(userId: string): Promise; }