/** * Finds the longest common starting string between all given strings. This is not the most * efficient possible implementation for this, but it's simple to read and works. Don't use for * massive sets of strings. */ export declare function findLongestCommonPrefix(inputStrings: ReadonlyArray): string;