/** * contribute_feedback Tool * * Submit feedback about gitmem — feature requests, bug reports, * friction points, or suggestions. Always saved locally to .gitmem/feedback/. * If opted in via config, sent anonymously to improve gitmem. * * Rate limited to 10 submissions per session. */ import type { ContributeFeedbackParams } from "../schemas/contribute-feedback.js"; export interface ContributeFeedbackResult { success: boolean; id?: string; path?: string; remote_submitted: boolean; display?: string; error?: string; performance_ms: number; } export declare function contributeFeedback(params: ContributeFeedbackParams): Promise; //# sourceMappingURL=contribute-feedback.d.ts.map