import { type ChildProcessWithoutNullStreams } from 'node:child_process'; export declare const restartService: (dockerComposePath: string, serviceName: string) => Promise; export declare const restartStack: (dockerComposePath: string) => Promise; export declare const stopService: (dockerComposePath: string, serviceName: string) => Promise; export declare const tailLogs: (dockerComposePath: string, serviceName: string, tailLines?: number) => ChildProcessWithoutNullStreams;