#!/usr/bin/env node
import { allocate } from "./api/allocate";
import { cleanup } from "./api/cleanup";
import { factor } from "./api/factor";
import { install } from "./api/install";
import { move } from "./api/move";
import { rebalance } from "./api/rebalance";
import { weights } from "./api/weights";
import { shellQuote } from "./internal/quote";
export { allocate, cleanup, factor, install, move, rebalance, shellQuote, weights, };
/**
 * Tool main function.
 */
export declare function main(argsIn: string[]): Promise<boolean>;
/**
 * A wrapper around main() to call it from a bin script.
 */
export declare function cli(): void;
//# sourceMappingURL=cli.d.ts.map