import * as React from 'react'; import { ActionIcon } from '../action-icon/ActionIcon'; declare const StyledStepperButton: React.ForwardRefExoticComponent, HTMLButtonElement>, "appearance" | "size" | "theme" | "isRounded"> & { theme?: ("primary" | "white" | "neutral" | "primaryDark" | "success" | "warning" | "danger" | Partial>) | undefined; appearance?: ("simple" | "outline" | "solid" | Partial>) | undefined; size?: ("sm" | "md" | "lg" | "xs" | Partial>) | undefined; isRounded?: (boolean | Partial>) | undefined; } & { as?: React.ElementType; }, "children" | "label" | "hasTooltip" | "tooltipSide" | keyof import("../..").NavigatorActions> & { children: React.ReactNode; label: string; } & Omit & import("../..").NavigatorActions, "ref"> & React.RefAttributes, "emphasis" | "fieldAppearance" | "fieldTheme"> & { fieldAppearance?: "standard" | "modern" | undefined; fieldTheme?: "grey" | "white" | undefined; emphasis?: "bold" | undefined; } & { as?: React.ElementType; }>; type NumberInputStepperProps = Omit, 'children'> & Omit, 'children'> & { icon: React.FC>; showTooltip?: boolean; disabledTooltipContent?: string; }; export declare const NumberInputStepper: React.ForwardRefExoticComponent & React.RefAttributes>; export {};