///
import { ICommand } from 'valor-unistore-undo';
import { IStoreState, ID } from '../index.data';
import { SpreadSheetRuntime } from '../RuntimeContext';
declare class SetCellStyleCommand extends ICommand, SpreadSheetRuntime> {
ids?: ID[];
execute: () => boolean;
undo: () => void;
do: () => void;
restoreSelection: () => void;
}
export default SetCellStyleCommand;