import { Command } from '@oclif/core'; import { Requests } from '../http/http'; export declare function getRequestClient(command: Command): Promise; export declare function recoverApiConfig(command: Command): Promise<{ adminUrl: string; appUrl: string; masterKey: string; }>; export declare function recoverAdminCredentials(command: Command): Promise<{ admin: string; password: string; }>; export declare function recoverSecurityClientConfig(command: Command): Promise<{ clientId: string; clientSecret: string; }>; export declare function storeConfiguration(command: Command, environment: { adminUrl: string; appUrl: string; masterKey: string; }, admin: { admin: string; password: string; }): Promise; export declare function storeSecurityClientConfiguration(command: Command, securityClient: { clientId: string; clientSecret: string; }): Promise;