import ShoelaceElement from '../../internal/shoelace-element.js'; import type { CSSResultGroup } from 'lit'; /** * @summary Short summary of the component's intended use. * @documentation https://shoelace.style/components/grok-button * @status experimental * @since 2.0 * * * * @slot - The default slot. * @slot example - An example slot. * * @csspart base - The component's base wrapper. * */ export default class SlGrokButton extends ShoelaceElement { static styles: CSSResultGroup; /** An example attribute. */ attr: string; handleExampleChange(): void; render(): import("lit").TemplateResult<1>; }