import { Config } from "@oclif/core"; /** * Gets the filename in which the CLI should store the API token. * * @param config The CLI configuration object. */ export declare function getTokenFilename(config: Config): string; /** * Reads the API token from the environment or the configuration file. * * @param config The CLI configuration object. */ export declare function readApiToken(config: Config): Promise;