import { SoloError } from '../solo-error.js';
import { ErrorOwnership } from '../error-ownership.js';
export declare class RemoteConfigsMismatchSoloError extends SoloError {
    protected readonly retryable: boolean;
    protected readonly ownership: ErrorOwnership;
    constructor(cluster1: string, cluster2: string, cause?: Error);
}
