/** * Compares two strings in a case-insensitive manner. */ declare const ciEquals: (a: string, b: string) => boolean; export { ciEquals };