import { default as React } from 'react';

interface CourseActionsProps {
    courseId: string;
    onViewCourse: (courseId: string) => void;
    onEditCourse: (courseId: string) => void;
    onDeleteCourse: (courseId: string) => void;
    isLoadingEditCourse?: boolean;
}
export declare const CourseActions: React.FC<CourseActionsProps>;
export {};
