import { PersistentError } from './PersistentError';
export declare class MFAError extends PersistentError {
    /**
    * The Verification Token for the MFA Message
    */
    readonly token: string;
    constructor(token: string);
}
