import type { Builder, Handler } from '@onerepo/yargs'; import type { WithAffected, WithWorkspaces } from '@onerepo/builders'; import type { ReleaseType } from 'semver'; export declare const command: string[]; export declare const description = "Add changesets for modified Workspaces."; type Argv = WithAffected & WithWorkspaces & { add: boolean; filenames: 'hash' | 'human'; prompts: 'guided' | 'semver'; type?: ReleaseType; }; export declare const builder: Builder; export declare const handler: Handler; export {};