export declare class CoordinatorTester {
    private coordinator;
    private memoryAdapter;
    private testResults;
    constructor();
    private runTest;
    runAllTests(): Promise<{
        success: boolean;
        results: Record<string, {
            success: boolean;
            message: string;
        }>;
    }>;
    private testInitialization;
    private testDataOperations;
    private testQueryOperations;
    private testChangeNotification;
    private testConcurrency;
    private testLargeDataset;
    private testEdgeCases;
}
export declare function testCoordinatorFunctionality(): Promise<{
    success: boolean;
    results: Record<string, {
        success: boolean;
        message: string;
    }>;
}>;
