import * as React from 'react';
interface IPresentationRendererProps {
    isVisible: boolean;
    isLoading: boolean;
    loadingIndicator?: React.ComponentType;
    renderInternalContent: () => JSX.Element;
}
export declare class PresentationRenderer extends React.Component<IPresentationRendererProps> {
    render(): JSX.Element;
}
export {};
