import type { MeticulousClient } from "../types/client.types"; import type { ProjectIdentifier } from "./project-deployments.api"; export interface GetRegistryAuthResponse { registryUrl: string; projectName: string; robotAccountName: string; robotAccountSecret: string; expiresAt: string; uploadId: string; imageReference: string; } export declare const getRegistryAuth: ({ client, projectId, }: ProjectIdentifier & { client: MeticulousClient; }) => Promise; //# sourceMappingURL=registry.api.d.ts.map