export declare class DriveItemUtils { static isEncoded(url: string): boolean; static trimEndCharacter(url: string, trailingCharacter: string): string; /** * Returns relative (starting with /v1.0/shares...) api url to the drive item * @param fileAbsoluteUrl - absolute url to the file. Must start with https:// * @returns api url to the drive item */ static getFileSharesApiUri(fileAbsoluteUrl: string): string; }