import { AnnotationContextProps } from '../index';
export interface AnnotationProps {
    globalStepIndex: number;
    onOpen: (stepId: number) => void;
    i18nStrings: AnnotationContextProps['i18nStrings'];
    focusOnRender: boolean;
}
export declare function ClosedAnnotation({ globalStepIndex, onOpen, i18nStrings, focusOnRender }: AnnotationProps): JSX.Element;
