export declare const testDescriptors: ({
    name: string;
    arrangeFunction: () => {
        boardAsString: string;
        gameState: import("./engine").IGameState;
        maxPly: number;
        player: string;
    };
    actFunction: (initialData: any) => any;
    assertFunction: (initialData: any, expect: any, result: any) => void;
    doNotTestThroughWebService?: undefined;
} | {
    name: string;
    doNotTestThroughWebService: boolean;
    arrangeFunction: () => {
        boardAsString: string;
        gameState: import("./engine").IGameState;
        maxPly: number;
        player: string;
    };
    actFunction: (initialData: any) => any;
    assertFunction: (initialData: any, expect: any, result: any) => void;
})[];
