import React, { HTMLAttributes } from 'react';
import { CSSValueWithLength } from '../../styles';
import { InputGroupSize } from './types';
export interface InputGroupAddonProps extends Omit, 'children'> {
children?: React.ReactNode;
size?: InputGroupSize;
disabled?: boolean;
width?: CSSValueWithLength;
flex?: React.CSSProperties['flex'];
}
export declare const InputGroupAddon: React.ForwardRefExoticComponent>;