import { CLI, ParamsFrom } from "actionhero"; export declare class Pack extends CLI { name: string; description: string; inputs: { readonly output: { readonly required: false; readonly default: "./grouparoo.tar.gz"; readonly description: "Where should we generate the archive?"; readonly letter: "o"; }; }; constructor(); preInitialize: () => void; run({ params }: { params: ParamsFrom; }): Promise; }