/// export interface CardImgProps { typeId: string; pageId: string; answer: string; pageData?: PageDataProps; onComplete?: () => void; } interface PageDataProps { id: string; } declare function CardImg(props: CardImgProps): JSX.Element; export default CardImg;