import type { PetFeedback, PetFeedbackProgress } from './protocol.js'; type PetFeedbackKind = 'progress' | 'clarify' | 'success' | 'error'; export interface PetFeedbackOptions { publicSummary?: string; progress?: Partial; recoverable?: boolean; } /** * Builds ambient-safe companion feedback. Raw questions, errors, and tool output * must never be used as a fallback for publicSummary. */ export declare function createPetFeedback(kind: PetFeedbackKind, options?: PetFeedbackOptions): PetFeedback; export {};