import '../nile-icon'; import type { CSSResultGroup, TemplateResult } from 'lit'; import type { NileFormControl } from '../internal/nile-element'; import NileElement from '../internal/nile-element'; /** * @summary Buttons represent actions that are available to the user. * @status stable * @since 2.0 * * @dependency nile-icon * @dependency nile-spinner * * @event nile-blur - Emitted when the button loses focus. * @event nile-focus - Emitted when the button gains focus. * @event nile-invalid - Emitted when the form control has been checked for validity and its constraints aren't satisfied. * * @slot - The button's label. * @slot prefix - A presentational prefix icon or similar element. * @slot suffix - A presentational suffix icon or similar element. * * @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. */ export declare class NileButton extends NileElement implements NileFormControl { static styles: CSSResultGroup; private readonly formControlController; private readonly hasSlotController; button: HTMLButtonElement | HTMLLinkElement; private hasFocus; invalid: boolean; title: string; /** The button's theme variant. */ variant: 'primary' | 'secondary' | 'tertiary' | 'caution' | 'ghost' | 'destructive' | 'secondary-grey' | 'secondary-blue'; /** The button's size. */ size: string; /** Draws the button with a caret. Used to indicate that the button triggers a dropdown menu or similar behavior. */ caret: boolean; /** Disables the button. */ disabled: boolean; /** Draws the button in a loading state. */ loading: boolean; /** Draws an outlined button. */ outline: boolean; /** Draws a pill-style button with rounded edges. */ pill: boolean; /** * Draws a circular icon button. When this attribute is present, the button expects a single `` in the * default slot. */ circle: boolean; /** * The type of button. Note that the default value is `button` instead of `submit`, which is opposite of how native * `