import React from "react"; import { PrimitiveBaseProps, PrimitiveWithSizing } from "../helpers/types"; interface Props extends React.InputHTMLAttributes, PrimitiveBaseProps, PrimitiveWithSizing { label?: string; labelLayout?: "horizontal" | "vertical"; } export declare function Input(props: Props): JSX.Element; export {};