import type { CSSProperties, FC, Key } from 'react'; export interface SuperTplProps { value?: unknown; className?: string; data?: Record; style?: CSSProperties; isHtml?: boolean; } export declare const SuperTpl: FC; export default SuperTpl;