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;