import { BaseInputProps } from "../../BaseInput/BaseInput"; export type NumberBaseInputProps = Omit; /** * A thin wrapper around the `BaseInput` component for number input fields. * * NOTE: If shown with a label, please use the `NumberField` component instead. */ export declare const NumberBaseInput: ({ ref, ...rest }: NumberBaseInputProps) => import("react/jsx-runtime").JSX.Element;