import AbstractFeature, { FeatureDependency } from '../AbstractFeature';
import { ActionOptions, FeatureCode } from '../features.types';
export default class SandboxFeature extends AbstractFeature {
    code: FeatureCode;
    nameReadable: string;
    description: string;
    dependencies: FeatureDependency[];
    packageDependencies: never[];
    actionsDir: string;
    constructor(options: ActionOptions);
}
declare module '../../features/features.types' {
    interface FeatureMap {
        sandbox: SandboxFeature;
    }
    interface FeatureOptionsMap {
        sandbox: undefined;
    }
}
