import React from 'react'; import { InputAddonOwnProps } from './InputAddon'; import { CSSValueWithLength } from '../../styles'; export interface InputAffixProps extends Omit { className?: string; width?: CSSValueWithLength; /** Input 좌측에 렌더링될 요소 */ prefix?: string; /** Input 우측에 렌더링될 요소 */ suffix?: string; } export declare const InputAffix: React.ForwardRefExoticComponent>;