import { MessageDescriptor } from 'react-intl';
export interface AnnotationActivityLinkProps {
    id: string;
    isDisabled: boolean;
    message: MessageDescriptor;
    onClick: (id: string) => void;
}
declare const AnnotationActivityLink: ({ id, isDisabled, message, onClick, ...rest }: AnnotationActivityLinkProps) => JSX.Element;
export default AnnotationActivityLink;
