import * as React from 'react';
import { CustomRenderContext } from '../../../types';
import { AdaptableFrameworkComponent } from '../../types';
type Render = (customRenderContext: CustomRenderContext) => string | null;
interface ExternalRendererProps {
    componentName?: string;
    render?: Render;
    frameworkComponent?: AdaptableFrameworkComponent;
    onDestroy?: () => void;
    style?: React.CSSProperties;
}
export declare const ExternalRenderer: React.FunctionComponent<ExternalRendererProps>;
export {};
