import type { InstallationInfo } from "./InstallationInfo.js";
import type { BrewPackOptions } from "./install-pack-options.js";
/** A function that installs a package using brew
 *
 * @param name The name of the package
 * @param version The version of the package (optional)
 * @param options The options for installing the package
 *
 * @returns The installation information
 */
export declare function installBrewPack(name: string, version?: string, options?: BrewPackOptions): Promise<InstallationInfo>;
