import React from "react"; declare type Props = { title: string; price: number | string; image?: string; avatar?: string; fullName?: string; lessonsCounter?: number; hidePrice?: boolean; onClick?: () => void; onImageClick?: () => void; disabled?: boolean; toCreator?: () => void; }; export declare const CourseCard: React.FC; export {};