import { FunctionComponent } from "react"; import { ITexts } from "../context/context"; interface IConfig { accentColor?: string; cardBackgroundColor?: string; inactiveStarColor?: string; starColor?: string; textColor?: string; } interface IProps { config?: IConfig; openWebView: ((surveyId?: string) => void) | undefined; surveys: any[]; texts: ITexts; } export declare const CpxSurveyCards: FunctionComponent; export {};