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; } /** * Resolved via getDataDir() rather than homedir() so that it agrees with the * path `skills storage` advertises (native-storage.ts builds `feedbackDbPath` * from getDataDir()). While this read the home directly, setting * $HASNA_SKILLS_DIR made the reported path and the written path diverge - the * CLI would name a database it was not using. */ export declare function getFeedbackDbPath(): string; export declare function saveFeedback(input: FeedbackInput): FeedbackResult;