import type { SourcePackMode } from "../lib/source-pack-types.js"; export interface ExportContextArgs { full: boolean; code: boolean; all: boolean; sourceMode?: SourcePackMode; taskName?: string; check: boolean; output?: string; profile?: string; includeContext: string[]; includeCode: string[]; bundleStrategy?: "auto" | "area" | "topdir" | "config"; maxPackFiles?: number; maxBundleCharacters?: number; redactionStrict: boolean; prune?: number; help: boolean; } export declare function parseArgs(args: string[]): ExportContextArgs; export declare function helpText(): string;