export declare const setProfanities: (profanities: string[]) => void; /** * Checks if the given text contains any profanities. * @param text - The text to check for profanities. * @returns boolean - True if the text contains profanities, false otherwise. */ export declare const containsProfanity: (text: string) => boolean;