import { MittwaldAPIV2, MittwaldAPIV2Client } from "@mittwald/api-client"; import { GetBaseCommand } from "../../../lib/basecommands/GetBaseCommand.js"; export type PathParams = MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Get.Parameters.Path; type APIResponse = Awaited>; export default class Get extends GetBaseCommand { static description: string; static flags: { token: import("@oclif/core/interfaces").OptionFlag; }; static args: { id: import("@oclif/core/interfaces").Arg>; }; protected getData(): Promise; protected mapParams(input: PathParams): Promise | PathParams; } export {};