import type { BeachballOptions, ParsedOptions, RepoOptions } from '../types/BeachballOptions'; import { type ProcessInfo } from './getCliOptions'; /** * Gets all repo level options (default + root options + cli options) * @deprecated Use `getParsedOptions` */ export declare function getOptions(argv: string[]): BeachballOptions; /** * Get merged and unmerged options, for reuse by `getPackageInfos`. * @param testRepoOptions Repo options for testing purposes */ export declare function getParsedOptions(params: ProcessInfo & { testRepoOptions?: Partial; }): ParsedOptions; //# sourceMappingURL=getOptions.d.ts.map