declare const verbose: (message: string) => void; declare const info: (message: string) => void; declare const warning: (message: string) => void; declare const error: (message: string) => void; declare const success: (message: string) => void; declare const url: (url: string) => string; declare const emptyLine: () => void; declare const clearConsole: () => void; /** * Escapes a string for safe use in shell commands * Wraps the value in single quotes and escapes any single quotes within it */ declare const shellEscape: (arg: string) => string; declare const consoleCommand: (cmd: string, skipErrors: boolean) => Promise; declare const sshNavigateToMagentoRootCommand: (command: string, config: any, _useSecondDatabase?: boolean, log?: boolean) => string; declare const sshMagentoRootFolderPhpCommand: (command: string, config: any, useSecondDatabase?: boolean, log?: boolean) => string; declare const sshMagentoRootFolderMagerunCommand: (command: string, config: any, useSecondDatabase?: boolean, log?: boolean) => string; declare const localhostMagentoRootExec: (command: string, config: any, skipErrors?: boolean, removeQuote?: boolean) => Promise; declare const localhostWpRootExec: (command: string, config: any, skipErrors?: boolean, removeQuote?: boolean) => Promise; declare const localhostRsyncDownloadCommand: (source: string, destination: string, config: any, _useSecondDatabase?: boolean) => Promise; declare const wordpressReplaces: (entry: string, text: string) => string; declare const stripOutputString: (string: string) => string; export { verbose, info, success, warning, error, url, emptyLine, clearConsole, shellEscape, consoleCommand, sshNavigateToMagentoRootCommand, sshMagentoRootFolderPhpCommand, sshMagentoRootFolderMagerunCommand, localhostMagentoRootExec, localhostRsyncDownloadCommand, wordpressReplaces, localhostWpRootExec, stripOutputString }; //# sourceMappingURL=Console.d.ts.map