import React from "react"; import { Validation } from "@webiny/form"; interface InputBoxProps { value?: string | number; onChange?: (value: string) => void; defaultValue?: string | number; description?: string; label?: string; className?: string; validation?: Validation; type?: "string" | "number"; [key: string]: any; } declare const _default: React.MemoExoticComponent<({ className, value, onChange, label, description, validation, defaultValue, ...props }: InputBoxProps) => React.JSX.Element>; export default _default;