import { MpesaError } from './ErrorHandlers';
export declare class AuthenticationError extends MpesaError {
    errorCode?: string | undefined;
    constructor(message: string, errorCode?: string | undefined);
}
export declare class AuthenticationErrorHandler {
    static handle(error: any): never;
}
