///
import { ImageProps } from '@shopify/checkout-ui-extensions';
declare type Size = 'small' | 'base';
declare type Source = Exclude['sources']>['base'], string | any[]>;
export interface Props {
badge?: string | number;
description: string;
source?: string;
sources?: Source[];
size?: Size;
}
export declare function Thumbnail({ badge, description, source, sources, size, }: Props): JSX.Element;
export {};