import { SpruceSchemas } from './../../../.spruce/schemas/schemas.types';
import AbstractAction from '../../AbstractAction';
import { FeatureActionResponse } from '../../features.types';
type OptionsSchema = SpruceSchemas.SpruceCli.v2020_07_22.InstallSkillAtOrganizationOptionsSchema;
type Options = SpruceSchemas.SpruceCli.v2020_07_22.InstallSkillAtOrganizationOptions;
export default class InstallAction extends AbstractAction<OptionsSchema> {
    commandAliases: string[];
    optionsSchema: OptionsSchema;
    invocationMessage: string;
    execute(options: Options): Promise<FeatureActionResponse>;
}
export {};
