import React from "react"; import type { IconProps } from "../../Icon/Icon"; export type CarouselThumbnailProps = { assetIndex: number; bottomLeftIconName?: IconProps["name"]; isActive: boolean; onClickThumbnail: (index: number, ev?: React.KeyboardEvent) => void; src: string; title: string; topLeftIconName?: IconProps["name"]; }; export declare const CarouselThumbnail: React.ForwardRefExoticComponent>;