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