import { default as React, Dispatch, FC, PropsWithChildren } from 'react'; import { IAnnotationConfig } from '../../../models'; import { AnnotationActions } from './actions'; import { IAnnotationState } from './reducer'; interface AnnotationContextValue { state: IAnnotationState; dispatch: Dispatch; config?: IAnnotationConfig; } export declare const AnnotationContext: React.Context; interface AnnotationProviderProps { config?: IAnnotationConfig; documentUri?: string; } export declare const AnnotationProvider: FC>; export {};