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