import type { protos } from '@google-cloud/run'; import type { LogLevel } from '@remotion/renderer'; export type CheckIfServiceExistsInput = { projectID: string; memoryLimit: string; cpuLimit: string; timeoutSeconds: number; region: string; logLevel: LogLevel; }; /** * @description Lists Cloud Run services in the project, and checks for a matching name. * @param projectID GCP Project ID of Cloud Run service to check for. * @param memoryLimit Memory limit of Cloud Run service to check for. * @param cpuLimit CPU limit of Cloud Run service to check for. * @param timeoutSeconds Timeout of Cloud Run service to check for. * @param region The region of Cloud Run service to check for. * @returns {Promise} Returns Service object. */ export declare const checkIfServiceExists: ({ memoryLimit, cpuLimit, timeoutSeconds, projectID, region, logLevel, }: CheckIfServiceExistsInput) => Promise;