import type { Privacy } from '../defaults'; import type { GcpRegion } from '../pricing/gcp-regions'; type servicesCommandLineOptions = { help: boolean; region: GcpRegion; ['project-id']: string; ['service-name']: string; y: boolean; yes: boolean; force: boolean; ['onlyAllocateCpuDuringRequestProcessing']: boolean; f: boolean; privacy: Privacy; ['max-retries']: number; ['out-name']: string | undefined; ['output-bucket']: string; ['output-folder-path']: string; webhook: string; ['render-id-override']: string; }; export declare const parsedCloudrunCli: servicesCommandLineOptions & import("minimist").ParsedArgs; export declare const forceFlagProvided: boolean; export {};