export declare enum ErrorCode {
    WrongEmailFormat = 1,
    WrongDomainFormat = 2
}
export declare class EmailValidationError extends Error {
    constructor(errorCode: ErrorCode);
}
export declare function checkEmailTypos(email: string): string[];
