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