import { type log } from '@lerna-lite/npmlog'; import type { Argv } from 'yargs'; export interface FilterOptions { scope?: string; ignore?: string; private?: boolean; since?: string; continueIfNoMatch?: boolean; excludeDependents?: boolean; includeDependents?: boolean; includeDependencies?: boolean; includeMergedTags?: boolean; log: typeof log; } export declare function filterOptions(yargs: Argv): Argv;