import { IWeb } from '@pnp/sp/presets/all';
import { IProvisioningConfig } from '../provisioningconfig';
import { IFeature } from '../schema';
import { HandlerBase } from './handlerbase';
/**
 * Describes the Features Object Handler
 */
export declare class Features extends HandlerBase {
    /**
     * Creates a new instance of the ObjectFeatures class
     *
     * @param config - Provisioning config
     */
    constructor(config: IProvisioningConfig);
    /**
     * Provisioning features
     *
     * @param web - The web
     * @param features - The features to provision
     */
    ProvisionObjects(web: IWeb, features: IFeature[]): Promise<void>;
}
