import type { WithWorkspaces } from '@onerepo/builders'; import type { Builder, Handler } from '@onerepo/yargs'; export declare const command: string[]; export declare const description = "Preview the next versions and changelogs for Workspaces."; type Argv = WithWorkspaces & { format: 'json' | 'plain'; }; export declare const builder: Builder; export declare const handler: Handler; export {};