/** * Cleans up an array of strings by escaping special characters and trimming whitespace. * * @param strs - An array of strings to be cleaned. * @returns A new array of strings with special characters escaped and whitespace trimmed. */ export declare const escapeSpecialCharacters: (strs: string[]) => string[];