import { MittwaldAPIV2Client } from "@mittwald/api-client"; import { GetBaseCommand } from "../../../lib/basecommands/GetBaseCommand.js"; type APIResponse = Awaited>; export default class GetOwn extends GetBaseCommand { static description: string; static flags: { "project-id": import("@oclif/core/interfaces").OptionFlag; token: import("@oclif/core/interfaces").OptionFlag; }; static args: {}; protected getData(): Promise; } export {};