import Component from '../../components/button/button.component.js'; import { type EventName } from '@lit/react'; import type { TerraBlurEvent } from '../../events/events.js'; import type { TerraFocusEvent } from '../../events/events.js'; export type { TerraBlurEvent } from '../../events/events.js'; export type { TerraFocusEvent } from '../../events/events.js'; /** * @summary Buttons represent actions that are available to the user. * @documentation https://terra-ui.netlify.app/components/button * @status stable * @since 1.0 * * @slot - The button's label. * @slot prefix - A presentational prefix icon or similar element. * @slot suffix - A presentational suffix icon or similar element. * * @event terra-blur - emitted when the button is blurred * @event terra-focus - emitted when the button is focused * * @csspart base - The component's base wrapper. * @csspart prefix - The container that wraps the prefix. * @csspart label - The button's label. * @csspart suffix - The container that wraps the suffix. * @csspart caret - The button's caret icon, an `` element. * @csspart spinner - The spinner that shows when the button is in the loading state. */ declare const reactWrapper: import("@lit/react").ReactWebComponent; onTerraFocus: EventName; }>; export default reactWrapper;