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