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