import { FC } from "react"; import type { MittwaldAPIV2 } from "@mittwald/api-client"; type ProjectProjectReadinessStatus = MittwaldAPIV2.Components.Schemas.ProjectProjectStatus; interface Props { /** * The project to display the status for. * * Use a custom type instead of any of the generated types, because there are * multiple, slightly different types for project responses. However, all * response types should implement this interface one way or another. */ project: { enabled: boolean; status: ProjectProjectReadinessStatus; }; } export declare const ProjectStatus: FC; export {};