declare const execute: (comm: any, { isMultipleParameter, isWithLoading, successMessage, startMessage, }: { isMultipleParameter?: boolean; isWithLoading?: boolean; startMessage: any; successMessage: any; }) => Promise; declare const _default: { init: ({ clear }: { clear: unknown; }) => void; alert: (info: any) => void; execute: typeof execute; generateKeyPair: () => Promise<{ privateKey: string; publicKey: string; }>; quest: (questions: Array<{ name: string; message: string; }>) => Promise; generateSSHKeygen: (location: string, name: string) => Promise<{ pubKey: string; key: string; }>; asyncForEach: (array: any, callback: any) => Promise; }; export default _default;