interface CourseCardProps {
    title: string;
    children: React.ReactNode;
    className?: string;
}
export declare function CourseCard({ title, children, className }: CourseCardProps): import("react/jsx-runtime").JSX.Element;
export {};
