import { type Secret as SecretValue } from "../secret.ts"; export interface RegistryPushCredentials { server: string; username: string; password: string | SecretValue; } export declare function pushImageToRegistry(imageRef: string, registry: RegistryPushCredentials): Promise<{ imageRef: string; repoDigest?: string; }>; //# sourceMappingURL=registry.d.ts.map