import type { MittwaldAPIV2 } from "@mittwald/api-client"; import { RenderBaseCommand } from "../../../lib/basecommands/RenderBaseCommand.js"; import { ReactNode } from "react"; export type PathParams = MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemDiskUsage.Get.Parameters.Path; export declare class Usage extends RenderBaseCommand { static description: string; static flags: { human: import("@oclif/core/interfaces").BooleanFlag; }; static args: { "project-id": import("@oclif/core/interfaces").Arg; }; protected render(): ReactNode; }