import { Loader } from '../types'; type InstallArgs = { pkg: string; label?: string; loader: Loader; onSuccess?: () => void; onFail?: () => void; }; declare function brewInstall({ pkg, label, loader, onSuccess, onFail, }: InstallArgs): Promise; export { brewInstall }; //# sourceMappingURL=brewInstall.d.ts.map