import type { PoltergeistConfig } from '../types.js'; import type { TargetPanelEntry } from './types.js'; export interface TargetDiff { added: string[]; removed: string[]; } export declare function diffTargets(currentTargets: TargetPanelEntry[], nextTargets: PoltergeistConfig['targets']): TargetDiff; //# sourceMappingURL=target-diff.d.ts.map