import type { PoltergeistConfig, Target } from '../types.js'; /** * Format available targets for display */ export declare function formatAvailableTargets(config: PoltergeistConfig): string[]; /** * Validate target exists and provide helpful error with suggestions */ export declare function validateTarget(targetName: string, config: PoltergeistConfig): void; /** * Get target if it exists, otherwise show error and exit */ export declare function getTargetOrFail(targetName: string, config: PoltergeistConfig): Target; //# sourceMappingURL=target-validator.d.ts.map