/** * Compares two string given in lexicographical order. * @returns 1 if `a` is larger than `b`; -1 if `a` is smaller/older than `b`; 0 otherwise (same message) */ export declare function lexicographicalCompare(a: string, b: string): number; //# sourceMappingURL=string.d.ts.map