declare class safespeak {
    static isProfane(message: string, threshold: number): Promise<boolean>;
    static getScore(message: string): Promise<any>;
}
export { safespeak };
