import type { BeachballOptions, PackageOptions } from '../types/BeachballOptions'; import type { PackageInfo } from '../types/PackageInfo'; /** Subset of main options which are also package options */ export type BeachballPackageOptions = Pick; /** * Get a value from package-specific options (which already account for CLI overrides as stored) * or fall back to the main options. * * Note: for options where `null` is not a valid value, you can just use `??` instead of this function. * * @param optionName Option to get * @param packageInfo Package info with `packageOptions` if relevant * @param options All the options * @returns Option value */ export declare function getPackageOption(optionName: T, packageInfo: Pick, options: Partial>): PackageOptions[T] | undefined; //# sourceMappingURL=getPackageOption.d.ts.map