import type { BootstrapWriteBoundary } from "../io/bootstrap-write-boundary.js"; import type { CliRunResult } from "./bearshell.js"; type PolicyOptions = { readonly bootstrapWriteBoundary?: BootstrapWriteBoundary; readonly projectDir?: string; }; export declare function policyUsage(invocation?: string): string; export declare function runPolicyCommand(args: readonly string[], options?: PolicyOptions, invocationName?: string): CliRunResult; export {};