export interface ProjectStructure {
manifestPath: string;
packageJsonPath?: string;
}
export declare function getProjectPath(pathOrRemoteUrl: string | undefined): Promise<string>;
export declare function getProjectStructure(pathOrRemoteUrl: string | undefined): Promise<ProjectStructure>;