import * as builders from '@onerepo/builders'; import type { Builder, Handler } from '@onerepo/yargs'; import type { Lifecycle } from '../../types'; export declare const command = "tasks"; export declare const description = "Run tasks against repo-defined lifecycles. This command will limit the tasks across the affected Workspace set based on the current state of the repository."; export type Argv = { ignore: Array; lifecycle: Lifecycle; list?: boolean; shard?: string; 'ignore-unstaged'?: boolean; } & builders.WithWorkspaces & builders.WithAffected; export declare const lifecycles: Array; export declare const builder: Builder; export declare const handler: Handler;