import { ReactElement } from 'react'; import { Ipo } from '@fridaygame/client'; import { WrapperProps } from '@cezembre/fronts'; export type IpoThumbnailSize = 'narrow' | 'small' | 'big'; export type IpoThumbnailShape = 'box' | 'banner'; export interface IpoThumbnailProps extends WrapperProps { ipo: Ipo; size?: IpoThumbnailSize; shape?: IpoThumbnailShape; } export declare function IpoThumbnail({ ipo, size, shape, to, onClick, href, target, }: IpoThumbnailProps): ReactElement;