import * as React from "react"; import { ButtonElementProps } from "@stenajs-webui/core"; import { IconDefinition } from "@fortawesome/fontawesome-svg-core"; export type TextInputButtonVariant = "normal" | "error" | "warning" | "success" | "passive"; export type TextInputButtonSize = "medium" | "small"; export interface TextInputButtonProps extends ButtonElementProps { variant?: TextInputButtonVariant; icon?: IconDefinition; spin?: boolean; size?: TextInputButtonSize; } export declare const TextInputButton: React.ForwardRefExoticComponent>;