import { Button } from '../../base/button.js'; import '../focus-ring/focus-ring.js'; import '../ripple/ripple.js'; /** * @tag md-icon-button * * @csspart icon * * @slot - icon */ export declare class M3IconButton extends Button { size: 'xs' | 's' | 'm' | 'l' | 'xl'; color: 'primary' | 'secondary' | 'tertiary'; variant: 'text' | 'filled' | 'tonal' | 'outlined'; width: 'standard' | 'narrow' | 'wide'; static styles: any[]; render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'md-icon-button': M3IconButton; } }