import { Option } from 'commander'; /** * These options are used by multiple commands, but should be manually added. */ export declare const reusedOptions: { /** * Specific app(s) to target. NOTE: This will only be respected if the `program.addSubCommand` call * also sets `discoverAppPaths`. */ readonly app: (options?: { multi?: boolean; }) => Option; readonly bundler: () => Option; readonly logBundleInfo: (options?: { requiresNoCache?: boolean; }) => Option; readonly logResolveMap: () => Option; /** * @param descriptionStart Start of description for this command, e.g. "Bundle specific package(s)" * (it will automatically include an optional version note and examples) */ readonly match: (descriptionStart: string) => Option; readonly mode: (options: { action: "bundle" | "run"; }) => Option; /** `--no-cache` option */ readonly cache: () => Option; readonly login: (command: "sync" | "start") => Option; }; export declare function getDefaultLogin(): string; //# sourceMappingURL=reusedOptions.d.ts.map