import type { FeedbackData, FeedbackUser } from "./types"; interface FeedbackContentProps { user?: FeedbackUser; context?: Record; captureMetadata?: boolean; onSubmit?: (data: FeedbackData) => Promise | void; apiEndpoint?: string; placeholder?: string; submitLabel?: string; onSuccess: () => void; onError: (error: string) => void; } export declare function FeedbackContent({ user, context, captureMetadata, onSubmit, apiEndpoint, placeholder, submitLabel, onSuccess, onError, }: FeedbackContentProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=feedback-content.d.ts.map