import { FC } from 'react'; interface Table { userId: string; token: string; questId: string; headingBgColor: string; headingTextColor: string; horizontalBorder: boolean; bodyBgColor: string; bodyTextColor: string; headingTooltip: boolean; bodyTooltip: boolean; hideQuestion: boolean; showAvatar: boolean; tableWidth: string; hideAnswers: boolean; } declare const Table: FC