import * as lit_html from 'lit-html'; import * as lit from 'lit'; import { LitElement } from 'lit'; /** * @since 1.0.0 * @status stable * * @tagname kemet-svgs * @summary A set of SVG graphics that can be referenced anywhere in a page or app. * * @prop {string} set - Defines the name for the set of svgs. * */ declare class KemetSVGs extends LitElement { static styles: lit.CSSResult[]; set: string; slotElement: HTMLSlotElement; firstUpdated(): void; render(): lit_html.TemplateResult<1>; populateIcons(): void; } declare global { interface HTMLElementTagNameMap { 'kemet-svgs': KemetSVGs; } interface Document { kemetSVGs: any; } } export { KemetSVGs as default };