import { ImagePullSecret } from "../../lib/types"; export interface ImagePullSecretDetails { pullSecret?: string; dockerServer?: string; dockerUsername?: string; dockerEmail?: string; dockerPassword?: string; } export declare function validateImagePullSecretDetails(details: ImagePullSecretDetails): { valid: boolean; error?: string; }; type ValidatedImagePullSecretDetails = Required; export declare function generateImagePullSecret(details: ValidatedImagePullSecretDetails): ImagePullSecret; export {}; //# sourceMappingURL=imagePullSecret.d.ts.map