import { LucideIcon } from "lucide-react"; import React, { FC } from "react"; export interface FeedbackProps extends React.HTMLAttributes { Icon?: LucideIcon; onPost: (data: FeedbackResponse) => Promise; title?: string; label?: string; footer?: string; name?: string; placeholder?: string; button?: string; submit?: string; modalSpacing?: string; } export type FeedbackResponse = { comment?: string | null; }; declare const Feedback: FC; export default Feedback; export interface FeedbackFormProps { afterSubmit: () => void; color?: string; onPost: (data: FeedbackResponse) => Promise; label?: string; name?: string; placeholder?: string; footer?: string; submit?: string; } export declare function FeedbackForm(props: FeedbackFormProps): React.JSX.Element; //# sourceMappingURL=Feedback.d.ts.map