import type { GcpRegion } from '../pricing/gcp-regions'; export type ServiceInfo = { serviceName: string; timeoutInSeconds: number; memoryLimit: string; cpuLimit: string; remotionVersion: string | null; uri: string; region: GcpRegion; consoleUrl: string; }; export type GetServiceInfoInput = { region: GcpRegion; serviceName: string; }; export declare const getServiceInfo: ({ region, serviceName, }: GetServiceInfoInput) => Promise;