import { fileTypes } from './Card.types'; export interface iFileCard { fileCard?: boolean; fileType?: fileTypes; } declare const CardFile: ({ fileCard, fileType }: iFileCard) => JSX.Element; export default CardFile;