///
import * as React from 'react';
import { BaseComponent } from '../../Utilities';
export declare class BaseDecorator extends BaseComponent {
protected _skipComponentRefResolution: boolean;
protected _composedComponentInstance: React.Component;
private _hoisted;
constructor(props: TProps);
/**
* Updates the ref to the component composed by the decorator, which will also take care of hoisting
* (and unhoisting as appropriate) methods from said component.
*
* Pass this method as the argument to the 'ref' property of the composed component.
*/
protected _updateComposedComponentRef(composedComponentInstance: React.Component): void;
}