import { Command, CommandModel, CommandProps } from './command';
import { LabeledRequestHandler } from '../../skill/models';
export interface ReinflateCommandModel extends CommandModel {
    preservedSequencers?: string[];
}
export interface ReinflateCommandProps extends CommandProps {
    preservedSequencers?: string[];
}
export declare class ReinflateCommand extends Command<ReinflateCommandModel, ReinflateCommandProps> {
    constructor(props: ReinflateCommandProps);
    commandSpecificModel(): ReinflateCommandModel;
    commandSpecificRequestHandlers(): LabeledRequestHandler[];
}
