import React from 'react'; import { IconType } from '@chargify/icons'; import { ComponentSize } from '../types'; import { Variant } from './types'; export interface InputProps extends React.InputHTMLAttributes { value?: string; inputSize?: ComponentSize; iconLeft?: IconType; iconRight?: IconType; disabled?: boolean; hasError?: boolean; variant?: Variant; fullWidth?: boolean; onChange: React.ChangeEventHandler; } declare const Input: ({ value, inputSize, disabled, iconLeft, iconRight, hasError, variant, fullWidth, onChange, ...props }: InputProps) => React.JSX.Element; export default Input;