import { FC } from 'react'; interface PageProps { title?: string; imgSrc?: any; children?: any; style?: string; rightView?: any; require?: boolean; } declare const CardDiv: FC; export default CardDiv;