import type { PoltergeistConfig } from '../types.js'; export interface ResolveLogPathOptions { config: PoltergeistConfig; projectRoot: string; targetName?: string; channel?: string; } export interface ResolvedLogPath { logFile?: string; target?: string; usedFallback: boolean; channel: string; } export declare const resolveLogPath: (input: ResolveLogPathOptions) => ResolvedLogPath; //# sourceMappingURL=log-path-resolver.d.ts.map