/// <reference types="react" />
import type { IMedia } from "@cross-nft-marketplace/auction-house-nft-hooks";
declare type MediaObjectProps = {
    a11yIdPrefix?: string;
    isFullPage?: boolean;
    medias: IMedia[];
};
export declare const MediaObject: import("react").MemoExoticComponent<({ medias, a11yIdPrefix, isFullPage, }: MediaObjectProps) => JSX.Element>;
export {};
