import { CliOutputMode } from "../shared/outfitter-fhahf9f3.js"; import { defineAction } from "@outfitter/contracts"; interface AddActionInput { readonly block: string; readonly cwd?: string | undefined; readonly dryRun: boolean; readonly force: boolean; readonly outputMode: CliOutputMode; } type AddAction = ReturnType>; /** Add a block from the registry to the current project. */ declare const addAction: AddAction; type ListBlocksAction = ReturnType>; /** List all blocks available in the registry. */ declare const listBlocksAction: ListBlocksAction; export { listBlocksAction, addAction };