import React from 'react';
type AnnotationViewWrapperProps = {
    annotationText?: string;
    children: React.ReactNode;
    onViewed?: () => void;
};
export declare class AnnotationViewWrapper extends React.PureComponent<AnnotationViewWrapperProps> {
    componentDidMount(): void;
    render(): React.ReactNode;
}
export {};
