export type Chapter = {
    id: string;
    title: string;
    timestamp: number;
    keywords?: string[];
};
export interface ChaptersContentProps {
    chapters?: Chapter[];
}
export declare function ChaptersContent({ chapters }: ChaptersContentProps): import("react/jsx-runtime").JSX.Element;
