import * as React from "react"; import { ViewProps } from "../View"; import IconActivity from "../Icons/Activity"; import IconAssignment from "../Icons/Assignment"; import IconAudio from "../Icons/Audio"; import IconAward from "../Icons/Award"; import IconCalendar from "../Icons/Calendar"; import IconCheckbox from "../Icons/Checkbox"; import IconCourse from "../Icons/Course"; import IconDocument from "../Icons/Document"; import IconInteractive from "../Icons/Interactive"; import IconLink from "../Icons/Link"; import IconLti from "../Icons/Lti"; import IconQuiz from "../Icons/Quiz"; import IconText from "../Icons/Text"; import IconUserTick from "../Icons/UserTick"; import IconVideo from "../Icons/Video"; import IconVideoplay from "../Icons/Videoplay"; export declare const typeIconDic: { activities: typeof IconActivity; attendance: typeof IconUserTick; assignment: typeof IconAssignment; document: typeof IconDocument; h5p: typeof IconVideoplay; iframe: typeof IconLink; interactive: typeof IconInteractive; question: typeof IconCheckbox; quiz: typeof IconQuiz; resource: typeof IconText; link: typeof IconLink; text: typeof IconText; video: typeof IconVideo; workshop: typeof IconCourse; course: typeof IconCourse; award: typeof IconAward; lti: typeof IconLti; event: typeof IconCalendar; audio: typeof IconAudio; }; export interface LessonProps extends ViewProps { title?: string; type?: string; duration?: number; author?: string; typeLabel?: string | JSX.Element; } declare const Lesson: React.SFC; export default Lesson;