import { Block } from '../ansible/types.js'; import { Service as ComposeService } from '../compose.types.js'; type Config = { name: string; service_dir: string; files_dir?: string; files?: Record; docker_network: string; compose: ComposeService | ComposeService[]; restart_conditions?: string[]; before_start?: string[]; }; export declare function create_service({ name, service_dir, docker_network, compose, files_dir, files, restart_conditions, before_start }: Config): Block; export {}; //# sourceMappingURL=create_service.d.ts.map