/** * CLI parsing for the `weft schedule` subcommand and its actions * (`list`, `create`, `pause`, `resume`, `cancel`). * * @module cli/parse-schedule-arguments */ import type { CliCommand } from './types.ts'; /** Parse `weft schedule [...]` into a {@link CliCommand}. */ export declare function parseScheduleArguments(args: string[]): CliCommand;