export interface InitLocalBundleOptions { readonly bundleName: string; readonly workspaceDir: string; readonly outDir?: string; readonly contextManifestPath: string; readonly workforceApprovalPolicyApiName: string; readonly toolApprovalPolicyApiName: string; } export declare function initLocalBundle(options: InitLocalBundleOptions): Promise<{ bundleRoot: string; bundlePath: string; employeePackagePath: string; approvalPolicies: { workforceRelease: string; toolCall: string; }; sourceMode: "canonical" | "scratch"; deployable: boolean; }>; export declare function resolveWorkforceGeneratedRoot(bundleDir: string): string; export declare function validateLocalBundle(options: { readonly bundleDir: string; readonly contextManifestPath: string; }): Promise<{ valid: true; bundleName: string; agentApiName: string; employeePackagePath: string; }>;