import { ReadProject } from "./read-project";
/**
 * A response providing a single project.
 *
 * @category Model Admin
 */
export declare class ProjectResponse {
    /**
     * Indicates which project a group belongs to.
     */
    project: ReadProject;
}
