import { ImgHTMLAttributes } from 'react';
import { ImageTemplate } from '../../types';
interface SymbolProps extends ImgHTMLAttributes {
template?: ImageTemplate;
}
/**
* **JSON-format type: symbol **
*
* @param src
* @param alt
* @param template
* @param props
* @constructor
*/
declare function Symbol({ src, alt, template, ...props }: SymbolProps): import("react/jsx-runtime").JSX.Element;
export { Symbol };