export { isEqualStringList }; type StringList = false | string | string[]; declare function isEqualStringList(a: StringList, b: StringList): boolean;