/// import { InputProps } from "@tarojs/components"; import { InputColor } from "./input.shared"; export interface NativeInputProps extends InputProps { readonly?: boolean; color?: InputColor; } declare function NativeInput(props: NativeInputProps): JSX.Element; export default NativeInput;