import * as msRest from "@azure/ms-rest-js"; import * as Models from "../models"; import { GraphRbacManagementClientContext } from "../graphRbacManagementClientContext"; /** Class representing a SignedInUser. */ export declare class SignedInUser { private readonly client; /** * Create a SignedInUser. * @param {GraphRbacManagementClientContext} client Reference to the service client. */ constructor(client: GraphRbacManagementClientContext); /** * Gets the details for the currently logged-in user. * @param [options] The optional parameters * @returns Promise */ get(options?: msRest.RequestOptionsBase): Promise; /** * @param callback The callback */ get(callback: msRest.ServiceCallback): void; /** * @param options The optional parameters * @param callback The callback */ get(options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; /** * Get the list of directory objects that are owned by the user. * @param [options] The optional parameters * @returns Promise */ listOwnedObjects(options?: msRest.RequestOptionsBase): Promise; /** * @param callback The callback */ listOwnedObjects(callback: msRest.ServiceCallback): void; /** * @param options The optional parameters * @param callback The callback */ listOwnedObjects(options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; /** * Get the list of directory objects that are owned by the user. * @param nextLink Next link for the list operation. * @param [options] The optional parameters * @returns Promise */ listOwnedObjectsNext(nextLink: string, options?: msRest.RequestOptionsBase): Promise; /** * @param nextLink Next link for the list operation. * @param callback The callback */ listOwnedObjectsNext(nextLink: string, callback: msRest.ServiceCallback): void; /** * @param nextLink Next link for the list operation. * @param options The optional parameters * @param callback The callback */ listOwnedObjectsNext(nextLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; } //# sourceMappingURL=signedInUser.d.ts.map