interface Props { children?: import('svelte').Snippet<[ { value: number | null; increment: () => void; decrement: () => void; } ]>; value?: number | null; min?: number; max?: number; step?: number; disabled?: boolean; readonly?: boolean; required?: boolean; name?: string; id?: string; placeholder?: string; class?: string; inputClass?: string; incrementLabel?: string; decrementLabel?: string; 'aria-label'?: string; 'aria-labelledby'?: string; 'aria-describedby'?: string; 'aria-invalid'?: boolean; 'aria-errormessage'?: string; oninput?: (event: Event) => void; onchange?: (value: number | null) => void; autofocus?: boolean; } declare const NumberInput: import("svelte").Component; type NumberInput = ReturnType; export default NumberInput;