import React from 'react';
import { TdInputAdornmentProps } from './type';
import { StyledProps } from '../common';
export interface InputAdornmentProps extends TdInputAdornmentProps, StyledProps {
    children?: React.ReactNode;
}
declare const InputAdornment: React.ForwardRefExoticComponent<InputAdornmentProps & React.RefAttributes<HTMLDivElement>>;
export default InputAdornment;
