import { Command } from 'commander'; type Init_opts = { skipAuth?: boolean; apiKey?: string; }; declare const handle_init: (opts: Init_opts) => Promise; declare const init_command: Command; export { init_command, handle_init }; //# sourceMappingURL=init.d.ts.map