import { InputSize } from '@mezzanine-ui/core/input'; import { NativeElementPropsWithoutKeyAndRef } from '../../utils/jsx-types'; export interface SpinnerButtonProps extends Omit, 'type' | 'disabled'> { /** * Whether the spinner button is disabled. */ disabled?: boolean; /** * The size of spinner button. * @default 'main' */ size?: InputSize; /** * The type of spinner button. */ type: 'up' | 'down'; } declare const SpinnerButton: import("react").ForwardRefExoticComponent>; export default SpinnerButton;