import { Scheduler } from './scheduler.js'; interface CliResult { exitCode: number; stdout: string; stderr: string; } interface CliOptions { scheduler?: Scheduler; schedulesFile?: string; channel?: string; projectId?: string; now?: number; } declare function runScheduleCli(args: string[], options?: CliOptions): Promise; declare function main(argv?: string[]): Promise; export { runScheduleCli, main }; export type { CliResult, CliOptions };