/// <reference types="react" />
import { InputProps } from "@vnxjs/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;
