import React from 'react'; interface FaqsProps { questionsList: IFaqs[]; bgColor?: string; questionColor?: string; answerColor?: string; numberColor?: string; padding?: boolean; middleLineColor?: string; fontFamily?: string; } interface IFaqs { id: number; titulo: string; descricao: string; } export declare const Faqs: ({ questionsList, answerColor, bgColor, numberColor, padding, questionColor, middleLineColor, fontFamily, }: FaqsProps) => React.JSX.Element; export {};