export declare class SyncViewTester {
    private view;
    private testResults;
    constructor();
    private runTest;
    runAllTests(): Promise<{
        success: boolean;
        results: Record<string, {
            success: boolean;
            message: string;
        }>;
    }>;
    private testBasicCRUD;
    private testBatchOperations;
    private testStorePagination;
    private testViewDiff;
    private testSerialization;
    private testStoreManagement;
    private testClearOperation;
}
export declare function testSyncViewFunctionality(): Promise<{
    success: boolean;
    results: Record<string, {
        success: boolean;
        message: string;
    }>;
}>;
