/** !
 * Copyright (c) 2019, Matt Dunn
 *
 * @author Matt Dunn
 */
/// <reference types="react" />
import { ParentReference, WireframeAnnotation } from "../api";
declare type WireframeAnnotationsNoteProps = {
    annotation: WireframeAnnotation;
    isHighlighted?: boolean;
    parentReference?: ParentReference;
};
export declare const WireframeAnnotationNote: ({ annotation, parentReference, isHighlighted }: WireframeAnnotationsNoteProps) => JSX.Element;
export {};
