import React, { CSSProperties } from "react"; declare type Props = { question: string; answer: string; style?: CSSProperties; draggableControlProps?: any; onEdit?: (data: { question: string; answer: string; }) => void; onDelete?: (data: { question: string; answer: string; }) => void; dragAndDropIcon?: React.ReactNode; dragged?: boolean; }; export declare const FaqItem: React.FC; export {};