import * as React from "react"; import type { MergeElementProps } from "../typings"; interface InputAdornmentBaseProps { /** The content of the component. */ children?: React.ReactNode; /** * Append to the classNames applied to the component so you can override or * extend the styles. */ className?: string; /** * The variant of the component. * @default "node" */ variant?: "node" | "icon" | "text"; } export declare type InputAdornmentProps = MergeElementProps<"div", InputAdornmentBaseProps>; declare type Component = { (props: InputAdornmentProps): React.ReactElement | null; propTypes?: React.WeakValidationMap | undefined; displayName?: string | undefined; }; declare const InputAdornment: Component; export default InputAdornment;