import { IControlInput } from '../controls/interfaces/IControlInput'; import { IControlManager } from '../controls/interfaces/IControlManager'; /** * Validates that the serialized state will survive the round-trip successfully. * * If round-trip fails, diagnostic information is printed to the console. * @param serializedState - Serialized state (a string in JSON format) * @param controlManager - Control manager * @param input - Input * @throws Error if round-trip fails. */ export declare function validateSerializedState(serializedState: string, controlManager: IControlManager, input: IControlInput): void; //# sourceMappingURL=SerializationValidator.d.ts.map