/**
 * Text class for sanitizing string inputs
 */
export declare class Text {
    /**
     * Sanitizes a string by removing newlines, carriage returns and trimming whitespace
     * @param input The string to sanitize
     * @returns The sanitized string
     */
    static sanitize(input: string): string;
}
