import type { Command } from "@oclif/core"; interface OpalCredentials { email?: string; organizationID?: string; clientID?: string; secret?: string; secretType?: SecretType; organizationName?: string; } export declare enum SecretType { Cookie = "COOKIE", ApiToken = "API_TOKEN" } export declare const setOpalCredentials: (command: Command, email: string | undefined, organizationID: string | undefined, clientID: string | undefined, secret: string, secretType?: SecretType, organizationName?: string) => Promise; export declare const getOpalCredentials: (command: Command, includeAuthSecret?: boolean) => Promise; export declare const removeOpalCredentials: (command: Command) => Promise; export declare const removeAuthSecret: (command: Command) => Promise; export {};