import { Command } from 'commander'; /** * `flows init [template] [name]` — scaffold a runnable fund action. * * Writes a `.js` (a PROPOSER following the fund-action contract) and a * matching `.manifest.json` (a capability manifest valid against the * deploy schema) into the current directory, from one of the bundled example * templates. So a first deploy is two commands: * * flows init dca my-dca * flows deploy my-dca.js --manifest my-dca.manifest.json * * The templates are sourced from examples/actions/ (bundled into the CLI at * build time — see cli/scripts/build-gallery.mjs). `--list` shows the gallery. */ export declare const initCommand: Command;