type CompareResult = 1 | -1 | 0; /** * returns 0 for matching strings * return -1 for string with lower char code at some position * return 1 for string with greater char code at some position * @example * stringCompare('abc', 'abc') * // returns 0 * stringCompare('abc', 'abd') * // returns -1 */ export default function stringCompare(strA: string, strB: string): CompareResult; export {}; //# sourceMappingURL=stringCompare.d.ts.map