UNPKG

@cross-nft-marketplace/auction-house-nft-components

Version:
15 lines (14 loc) 592 B
/// <reference types="react" /> import { NetworkIDs } from "@cross-nft-marketplace/auction-house-nft-hooks"; import { Strings } from "../constants/strings"; import { Style } from "../constants/style"; import type { RendererConfig } from "../content-components/RendererConfig"; export declare type ThemeType = typeof Style; export declare type MediaContextType = { style: ThemeType; networkId: NetworkIDs; strings: typeof Strings; kIndexer: string; renderers: RendererConfig[]; }; export declare const MediaContext: import("react").Context<MediaContextType>;