import type { BaseKubernetesGenerator } from '../../kubernetes/generator.ts';
import type { WorkspacesApplication } from '../types.ts';
export { checkDocker } from '../../docker/support/index.ts';
/**
 * Check Images
 */
export declare const checkImages: (this: BaseKubernetesGenerator, { applications }: {
    applications: WorkspacesApplication[];
}) => {
    hasWarning: boolean;
    warningMessage: string;
};
/**
 * Configure Image Names
 */
export declare const configureImageNames: import("../../base/tasks.js").SimpleTask<any, import("../../base/tasks.js").TaskParamWithControl & {
    applications: WorkspacesApplication[];
    deployment: import("../types.ts").Deployment;
}>;
