import AbstractAction from '../../AbstractAction';
import { FeatureActionResponse } from '../../features.types';
export default class CreateAppAction extends AbstractAction<OptionsSchema> {
    optionsSchema: {
        id: string;
        fields: {};
    };
    invocationMessage: string;
    readonly commandAliases: string[];
    execute(): Promise<FeatureActionResponse>;
}
declare const optionsSchema: {
    id: string;
    fields: {};
};
type OptionsSchema = typeof optionsSchema;
export {};
