export type ThumbnailProps = { index: number; selected: boolean; children: React.ReactNode; onSelect: (index: number) => void; }; export declare const Thumbnail: ({ index, selected, children, onSelect }: ThumbnailProps) => import("react/jsx-runtime").JSX.Element;