/** @jsx jsx */ import { InputHTMLAttributes } from 'react'; import { jsx } from '@emotion/react'; import { CommonPropsAndClassName, CSSObjectWithLabel, GroupBase } from '../types'; export interface InputSpecificProps = GroupBase> extends InputHTMLAttributes, CommonPropsAndClassName { /** Reference to the internal element */ innerRef?: (instance: HTMLInputElement | null) => void; /** Set whether the input should be visible. Does not affect input size. */ isHidden: boolean; /** Whether the input is disabled */ isDisabled?: boolean; /** The ID of the form that the input belongs to */ form?: string; /** Set className for the input element */ inputClassName?: string; } export declare type InputProps = GroupBase> = InputSpecificProps; export declare const inputCSS: >({ isDisabled, value, theme: { spacing, colors }, }: InputProps, unstyled: boolean) => CSSObjectWithLabel; declare const Input: >(props: InputProps) => jsx.JSX.Element; export default Input;