import type CoreGenerator from '../../base-core/generator.ts'; /** * Check that Docker exists. * @this {import('../../base-core/index.js').default} */ export declare const checkDocker: (this: CoreGenerator) => Promise; /** * This is the Generator base class. * This provides all the public API methods exposed via the module system. * The public API methods can be directly utilized as well using commonJS require. * * The method signatures in public API should not be changed without a major version change */ declare const _default: { checkDocker: (this: CoreGenerator) => Promise; }; export default _default;