declare function sanitizeXSSInjection(input: string): {
    sanitized: string;
    isDangerous: boolean;
};
declare function sanitizeSQLInjection(input: string): {
    sanitized: string;
    isDangerous: boolean;
};
declare function fieldsHide(str: string, start: number, end: number): string;
export { sanitizeSQLInjection, sanitizeXSSInjection, fieldsHide };
