import { SVGOpts } from './icons-opts'; import { FunctionalComponent, VNode } from '../../stencil-public-runtime'; /** * Get Scalable vector graphics images (svg) dynamically. * * This file must be a tsx and it must explicitly use an svg tag (Empty) */ export declare const Empty: FunctionalComponent; export declare const getSvgComponent: (name: string) => FunctionalComponent; export declare const getSvg: (name: string, opts?: SVGOpts) => VNode;