/** * herdctl init fleet - Initialize a new herdctl fleet * * Non-interactive command that scaffolds: * - herdctl.yaml with a comprehensive commented template * - .herdctl/ state directory */ export interface InitFleetOptions { name?: string; force?: boolean; } export declare function initFleetCommand(options: InitFleetOptions): Promise; //# sourceMappingURL=init-fleet.d.ts.map