import { Project } from "@atomist/automation-client";
import { BoundedElement } from "../../util/BoundedElement";
export interface PackageInfo extends BoundedElement {
    fqn: string;
}
/**
 * Return the imports already in this project
 * @param {Project} p
 * @param {string} path
 * @return {Promise<Import[]>}
 */
export declare function packageInfo(p: Project, path: string): Promise<PackageInfo>;
