#!/usr/bin/env node export type CliArgs = { command: string; runId?: string; controllerName?: string; resourceKey?: string; dir: string; controllerDir: string; once: boolean; project?: string | undefined; piArgs?: string[] | undefined; }; export declare function parseCliArgs(argv: string[]): CliArgs; export declare function main(argv?: string[]): Promise;