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