import { type CliCommandContractV1 } from '@nexusclaw/shared'; export interface CliCommandRegistryExportV1 { schemaVersion: 'nexusclaw.cli-command-registry/v1'; commands: CliCommandContractV1[]; registryDigest: `sha256:${string}`; } export declare function exportCommandContracts(contracts: ReadonlyArray, includePlanned?: boolean): CliCommandRegistryExportV1;