/** * Remote feedback submission via Supabase anon key. * * This uses the PUBLIC anon key (designed to be shipped in client apps). * RLS restricts anon to INSERT-only on community_feedback. * Separate from supabase-client.ts because it uses the anon key, not service role. */ export interface FeedbackPayload { feedback_id: string; type: string; tool: string; description: string; severity: string; suggested_fix?: string; context?: string; gitmem_version: string; agent_identity?: string; install_id?: string | null; client_timestamp: string; } export declare function submitFeedbackRemote(payload: FeedbackPayload): Promise; //# sourceMappingURL=feedback-remote.d.ts.map