import { HTMLAttributes } from 'react';
import { SCCourseType } from '@selfcommunity/types';
export interface CourseProps {
/**
* Id of the feed object
* @default 'course'
*/
id?: string;
/**
* Overrides or extends the styles applied to the component.
* @default null
*/
className?: HTMLAttributes['className'];
/**
* Course Object
* @default null
*/
course?: SCCourseType;
/**
* Id of the course for filter the feed
* @default null
*/
courseId?: number;
viewDashboard?: boolean;
}
export default function Course(inProps: CourseProps): import("react/jsx-runtime").JSX.Element;