// Generated by dts-bundle-generator v8.0.1 import React from 'react'; export type LanguageOption = { [key: string]: string; }; export interface ScrollFigureOptions { display?: "thumbnail" | "image-viewer"; aspectRatio?: number; width?: CSSStyleDeclaration["width"]; } export interface ScrollLanguageOptions { defaultLanguages?: string[]; enabled?: boolean; options?: LanguageOption[]; } export interface ScrollAnnotationsOptions { motivations?: string[]; } export interface ScrollOptions { offset?: number; figure?: ScrollFigureOptions; language?: ScrollLanguageOptions; annotations?: ScrollAnnotationsOptions; } export interface CloverScrollProps { iiifContent: string; options?: ScrollOptions; } declare const CloverScroll: React.FC; export { CloverScroll as default, }; export {};