import React from 'react'; import { Props } from "./input-props"; type NativeAttrs = Omit, keyof Props>; export type InputProps = Props & NativeAttrs; declare const Input: React.ForwardRefExoticComponent & import("../use-scale").ScaleProps, "ref"> & React.RefAttributes>; export default Input;