export interface DockerLogsState { lines: string[]; paused: boolean; setPaused: (paused: boolean) => void; clear: () => void; } export declare const useDockerLogs: (dockerComposePath: string, serviceName: string | null, enabled: boolean) => DockerLogsState;