interface Chapter {
    time: string;
    title: string;
}
interface AiGeneratedChaptersProps {
    chapters: Chapter[];
    className?: string;
}
export declare function AiGeneratedChapters({ chapters, className }: AiGeneratedChaptersProps): import("react/jsx-runtime").JSX.Element;
export {};
