import CommandBase from './commandBase';
export default class SaveContent extends CommandBase {
    commandName: string;
    method(content: any): any;
}
