/**
 * Converts an Object ID to a SID.
 * @param objectId The Microsoft Object ID (in GUID format) to convert to a SID.
 * @returns A Security Identifier, which is useful in Windows Server AD and Windows.
 */
export declare function convertToSid(objectId: string): string;
