import AbstractAction from '../../AbstractAction';
import { ActionOptions, FeatureActionResponse } from '../../features.types';
declare const optionsSchema: {
    id: string;
    description: string;
    fields: {};
};
type OptionsSchema = typeof optionsSchema;
export default class UnregisterSkillAction extends AbstractAction<OptionsSchema> {
    optionsSchema: OptionsSchema;
    commandAliases: string[];
    invocationMessage: string;
    private skills;
    constructor(options: ActionOptions);
    execute(): Promise<FeatureActionResponse>;
    private skillToChoices;
}
export {};
