/** * Executes a command with arguments and returns the stdout and stderr. * * @param {string} command the command to run (convert, identify, etc). * @param {string[]} args * @returns {Promise} */ export declare function execute(command: string, args: string[]): Promise; /** * Returns the latest available version of ImageMagick * * @param {boolean} fresh Do not used previously found version * @returns {Promise} */ export declare function getImageMagickVersion(fresh?: boolean): Promise; export interface IImageMagickCommandResult { stdout: string; stderr: string; }