import { SchemaValues } from '@sprucelabs/schema';
import AbstractAction from '../../AbstractAction';
import { FeatureActionResponse } from '../../features.types';
declare const optionsSchema: {
    id: string;
    description: string;
    fields: {
        namespace: {
            type: "id";
            label: string;
            hint: string;
        };
    };
};
type OptionsSchema = typeof optionsSchema;
type Options = SchemaValues<OptionsSchema>;
export default class DeployAction extends AbstractAction<OptionsSchema> {
    optionsSchema: {
        id: string;
        description: string;
        fields: {
            namespace: {
                type: "id";
                label: string;
                hint: string;
            };
        };
    };
    commandAliases: string[];
    invocationMessage: string;
    execute(options: Options): Promise<FeatureActionResponse>;
}
export {};
