import { type AuthoringDepth } from '../../domains/bundle/authoring.js'; import type { BundleCapability } from '../../domains/bundle/types.js'; interface BundleCommandOptions { project?: string; json?: boolean; platform?: string | string[]; scope?: 'project' | 'global'; locale?: string; level?: 'quick' | 'full'; depth?: AuthoringDepth; lane?: string; result?: string; approve?: boolean; reject?: boolean; reviewer?: string; overwrite?: boolean; skipCapability?: BundleCapability[]; confirmExecutables?: boolean; preview?: boolean; name?: string; defaultLocale?: string; localeOption?: string[]; engine?: boolean; file?: string; confirmedProposal?: boolean; candidate?: string; source?: string; ignoreMissing?: boolean; reason?: string; } export declare function bundleCandidatesCommand(options?: BundleCommandOptions): Promise; export declare function bundleDraftCreateCommand(name: string, options?: BundleCommandOptions): Promise; export declare function bundleDraftOptimizeCommand(source: string, options?: BundleCommandOptions): Promise; export declare function bundleStatusCommand(name: string, options?: BundleCommandOptions): Promise; export declare function bundleListCommand(options?: BundleCommandOptions): Promise; export declare function bundleFactoryGuideCommand(options?: BundleCommandOptions): Promise; export declare function bundleFactoryGenerateCommand(name: string, options?: BundleCommandOptions): Promise; export declare function bundleFactoryInitCommand(name: string, options?: BundleCommandOptions): Promise; export declare function bundleFactoryProposeCommand(name: string, options?: BundleCommandOptions): Promise; export declare function bundleFactoryResolveCommand(name: string, options?: BundleCommandOptions): Promise; export declare function bundleCompileCommand(name: string, options?: BundleCommandOptions): Promise; export declare function bundleEvalPlanCommand(name: string, options?: BundleCommandOptions): Promise; export declare function bundleEvalRecordCommand(name: string, options?: BundleCommandOptions): Promise; export declare function bundleReviewCommand(name: string, options?: BundleCommandOptions): Promise; export declare function bundleReviewSummaryCommand(name: string, options?: BundleCommandOptions): Promise; export declare function bundlePublishCommand(name: string, options?: BundleCommandOptions): Promise; export declare function bundleDistributeCommand(name: string, options?: BundleCommandOptions): Promise; export declare function bundleAuthoringPlanCommand(name: string, options?: BundleCommandOptions): Promise; export declare function bundleAuthoringRecordCommand(name: string, options?: BundleCommandOptions): Promise; export type { BundleCommandOptions }; //# sourceMappingURL=bundle.d.ts.map