import type { HtmlIngredientProps } from '../types.js';
export interface NumberInputInputProps extends HtmlIngredientProps<'input', HTMLInputElement> {
}
declare const NumberInputInput: import("svelte").Component<NumberInputInputProps, {}, "ref">;
type NumberInputInput = ReturnType<typeof NumberInputInput>;
export default NumberInputInput;
