import { Action } from "../chess";
import { Affect } from "../chess/affect/affect.types";
export declare const isAffectEql: (expected: Affect, received: Affect) => boolean;
export declare const isAffectsEql: (expected: Affect[] | undefined, received: Affect[] | undefined) => boolean;
export declare const isActionsEql: (expected: Action[] | undefined, received: Action[] | undefined) => boolean;
