export type FeedbackCategory = "bug" | "feature" | "general"; export interface FeedbackInput { message: string; category?: FeedbackCategory; email?: string; agent?: string; version?: string; } export interface FeedbackResult { saved: true; category: FeedbackCategory; path: string; } export declare function getFeedbackDbPath(): string; export declare function saveFeedback(input: FeedbackInput): FeedbackResult;