/// <reference types="react" />
import { InputAddonProps } from './types';
export * from './types';
declare const InputAddon: {
    ({ placement, ...props }: InputAddonProps): JSX.Element;
    propTypes: {
        placement: import("prop-types").Requireable<string>;
    };
    displayName: string;
};
declare const InputLeftAddon: (props: InputAddonProps) => JSX.Element;
declare const InputRightAddon: (props: InputAddonProps) => JSX.Element;
export { InputAddon, InputLeftAddon, InputRightAddon };
