import { Course } from '../../types/course';

export interface CreateCourseWizardProps {
    className?: string;
    creatorId: number;
    onComplete?: (course: Course) => void;
    deleteFile?: (fileId: string) => Promise<void>;
    isCreatingCourse: boolean;
}
export declare function CreateCourseWizard({ className, onComplete, creatorId, deleteFile, isCreatingCourse, }: Readonly<CreateCourseWizardProps>): import("react/jsx-runtime").JSX.Element;
