import { ReactElement } from 'react'; type GetContentRightOptions = { disabled?: boolean; readOnly?: boolean; value?: unknown; onClear?: () => void; size?: 'm' | 's' | 'xs' | 'l' | 'xl'; contentRight?: ReactElement; }; export declare const getContentRight: ({ disabled, readOnly, value, onClear, size, contentRight, }: GetContentRightOptions) => ReactElement | undefined; export {};