/// export declare type Thumbnail = 'none' | 'blur' | 'image'; interface BackgroundThumbnailProps { thumbnail: Thumbnail; imagePath?: string; name?: string; index?: number; } export default function BackgroundThumbnail({ thumbnail, imagePath, name, index }: BackgroundThumbnailProps): JSX.Element; export {};