import type { CSSProperties, ReactNode } from "react"; import type { MapTheme } from "../../../core/types"; type ThemedPreviewProps = { readonly theme: MapTheme; readonly className?: string; readonly style?: CSSProperties; readonly children: ReactNode; }; export declare const ThemedPreview: ({ theme, className, style, children }: ThemedPreviewProps) => import("react/jsx-runtime").JSX.Element; export {};