import React from "react"; export declare enum InputType { primary = "primary", secondary = "secondary" } interface IProps { label?: string; type?: InputType; inputProps?: Omit, "ref" | "as">; } export declare const Input: ({ label, inputProps, type }: IProps) => JSX.Element; export {};