import { BaseError } from "./BaseError";
/**
 * Indicates lack of ability to verify who is the participant performing an operation
 */
export declare class AuthenticationError extends BaseError {
    constructor(message: string);
}
