/** * Sanitizes the string by removing HTML tags and extra whitespace, line breaks, and tabs. * This helps to ensure that the string is in a consistent format for further processing. * @param str - The raw string to sanitize * @returns The sanitized string */ export declare const sanitizeString: (str: string) => string;