import * as React from 'react'; import { ThumbnailProps as CoreThumbnailProps } from 'wix-ui-core/dist/src/components/thumbnail'; export interface ThumbnailProps extends CoreThumbnailProps { /** image of the thumbnail */ image?: React.ReactElement; /** title of the thumbnail */ title: string; /** description of the thumbnail */ description?: string; } export declare const Thumbnail: React.SFC;