import { execFile } from "node:child_process"; import type { PaConfig } from "./config.js"; import { type LogQueryOptions, type ServiceLogEntry, type ServiceLogName } from "./log-query.js"; declare const execFileAsync: typeof execFile.__promisify__; type ExecFileLike = typeof execFileAsync; export declare function hasSlsLogSource(config: PaConfig, service: ServiceLogName | "all"): boolean; export declare function querySlsLogs(options: LogQueryOptions, config: PaConfig, run?: ExecFileLike): Promise; export {};