import tool from './tool'; import exec from './exec'; import platform from './platform'; import certificate from "./certificate"; import oss from './oss'; import redline from './redline'; import artifact from "./artifact"; import interaction from './interaction'; import testCase from './testCase'; import * as path from './path'; import * as logging from './logging'; import * as env from './env'; import * as outputs from './outputs'; import * as callback from './callback'; declare const addOutput: typeof outputs.addOutput; declare const exportEnvVar: typeof env.exportEnvVar; declare const addPath: typeof path.addPath; declare const isDebug: typeof logging.isDebug; declare const debug: typeof logging.debug; declare const info: typeof logging.info; declare const infoCyan: typeof logging.infoCyan; declare const warning: typeof logging.warning; declare const error: typeof logging.error; declare const errorV1: typeof logging.errorV1; declare const infoV1: typeof logging.infoV1; declare const warnV1: typeof logging.warnV1; declare const successV1: typeof logging.successV1; declare const success: typeof logging.success; declare const callbackUrl: typeof callback.callbackUrl; export { isDebug, debug, info, warning, error, success, infoCyan, errorV1, infoV1, warnV1, successV1, addPath, exportEnvVar, addOutput, callbackUrl, tool, exec, platform, certificate, redline, testCase, oss, artifact, interaction };