import React from 'react'; export interface IRenderAngularJSBaseProps extends React.HTMLProps { controller?: string; controllerAs?: string; locals?: { [key: string]: any; }; } export type IRenderAngularJSTemplateProps = IRenderAngularJSBaseProps & { template: string; }; export type IRenderAngularJSTemplateUrlProps = IRenderAngularJSBaseProps & { templateUrl: string; }; export type IRenderAngularJSProps = IRenderAngularJSTemplateProps | IRenderAngularJSTemplateUrlProps; export declare class AngularJSAdapter extends React.Component { static defaultProps: Partial; private $scope; constructor(props: any); componentWillReceiveProps(nextProps: IRenderAngularJSProps): void; private refCallback; private renderAngularTemplateAndController; componentWillUnmount(): void; render(): JSX.Element; }