import { Project } from "@atomist/automation-client";
import { BoundedElement } from "../../util/BoundedElement";
export declare type Annotation = BoundedElement;
export declare function existingAnnotations(p: Project, opts: {
    sourceFilePath: string;
    className: string;
}): Promise<Annotation[]>;
