import { default as React, JSX } from 'react';
export type InputSuffixProps = {
className?: string;
children: React.ReactNode;
} & JSX.IntrinsicElements['div'];
export declare const InputSuffix: ({ className, children, ...divProps }: InputSuffixProps) => JSX.Element;