import { Quonfig } from '@quonfig/node'; type Flags = { ['sdk-key']?: string; interactive?: boolean; }; export type CommandLike = { err: (input: Error | string, options?: { code?: string | undefined; exit: false; }) => void; error: (input: Error | string, options: { code?: string | undefined; exit: false; }) => void; }; declare const getKey: ({ args, command, flags, message, }: { args: { name?: string; }; command: CommandLike; flags: Flags; message: string; }) => Promise<{ key: null | string | undefined; quonfig: Quonfig | undefined; }>; export default getKey;