/// <reference types="react" />
import type { StyleProps } from "../utils/StyleTypes";
declare type MediaThumbnailWrapperProps = {
    children: React.ReactNode;
    onClick?: (evt: React.MouseEvent<HTMLElement>) => void;
    href?: string;
} & StyleProps;
export declare const MediaThumbnailWrapper: ({ children, onClick, href, className, }: MediaThumbnailWrapperProps) => JSX.Element;
export {};
