import React from "react"; import { CSS, VariantProps } from "../theme"; import { StyledInput, StyledInputLeftAddon, StyledInputLeftElement, StyledInputRightAddon, StyledInputRightElement } from "./input.styles"; declare type HTMLAttributes = React.HTMLAttributes & React.RefAttributes; declare type InputComponentVariants = VariantProps & { css?: CSS; }; export declare type InputProps = Omit, HTMLInputElement>, "size"> & React.RefAttributes & InputComponentVariants; export declare type InputLeftAddonProps = HTMLAttributes & InputComponentVariants; export declare type InputLeftElementProps = HTMLAttributes & InputComponentVariants; export declare type InputRightAddonProps = HTMLAttributes & InputComponentVariants; export declare type InputRightElementProps = HTMLAttributes & InputComponentVariants; export declare type InputGroupChilds = React.ReactElement; export {};