import type { UpdatableInfographicOptions } from '../../options'; import type { ICommand, IStateManager } from '../types'; export declare class UpdateOptionsCommand implements ICommand { private options; private original?; constructor(options: UpdatableInfographicOptions, original?: UpdatableInfographicOptions | undefined); apply(state: IStateManager): Promise; undo(state: IStateManager): Promise; serialize(): { type: string; options: Partial>; original: Partial> | undefined; }; }