import { type CSSProperties, type ReactNode } from 'react'; export type InteractiveBookPage = { backContent?: ReactNode; content: ReactNode; pageNumber?: number; title?: string; }; export type InteractiveBookProps = { bookAuthor?: string; bookTitle?: string; className?: string; closeLabel?: string; coverImage: string; height?: number | string; nextLabel?: string; openLabel?: string; pages: InteractiveBookPage[]; previousLabel?: string; restartLabel?: string; style?: CSSProperties; width?: number | string; }; export declare const InteractiveBook: ({ bookAuthor, bookTitle, className, closeLabel, coverImage, height, nextLabel, openLabel, pages, previousLabel, restartLabel, style, width, }: InteractiveBookProps) => import("react/jsx-runtime").JSX.Element;