import { AuthenticationMethod } from "./constants"; export { run } from "./dwc/run"; export { configure, getCommands } from "./module"; export { AuthenticationMethod }; export { getVersion, getBin, getDescription, getName, getPackageName, } from "./utils/utils"; export declare const configureCoreModule: ({ name, packageName, discoveryPaths, description, sapHelpLink, authenticationMethods, version, genericOptionsHelp, deprecated, deprecationMessage, }: { name: string; packageName: string; discoveryPaths: Array; description: string; sapHelpLink: string; authenticationMethods?: Array; version: string; genericOptionsHelp: string; deprecated?: boolean; deprecationMessage?: string; }) => void;