import React from 'react'; export interface InputProps extends Omit, 'prefix'> { /** * A Boolean attribute which, if present, indicates that the input has an error */ error?: boolean; /** * A Boolean attribute which, if present, indicates that the input has a warning */ warning?: boolean; /** * A Boolean attribute which, if present, indicates that the input is loading */ loading?: boolean; /** * A ReactNode attribute which, prefixes the input with a value */ prefix?: React.ReactNode; /** * A ReactNode attribute which, suffixes the input with a value */ suffix?: React.ReactNode; } declare const Input: React.ForwardRefExoticComponent>; export default Input;