import { CSSResultGroup, LitElement } from 'lit'; /** * @tag md-shadow * @summary Material Button web component */ export default class MdShadow extends LitElement { static get styles(): CSSResultGroup; render(): import('lit').TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { "md-shadow": MdShadow; } }