import { AuthenticatedCommand } from "../../AuthenticatedCommand"; export default class Create extends AuthenticatedCommand { static readonly description = "create an API key for the active Workspace"; static readonly examples: string[]; static readonly flags: { expiration: import("@oclif/core/lib/interfaces").OptionFlag; role: import("@oclif/core/lib/interfaces").OptionFlag; }; run(): Promise; }