import type { CommandModule } from 'yargs'; interface PolicyArgs { action?: 'init' | 'check'; synth?: boolean; outDir?: string; file?: string; force?: boolean; output?: 'text' | 'json'; } export declare const policyCommand: CommandModule, PolicyArgs>; export {};