import * as React from 'react'; import type { RenderNode } from './BaseSelect'; export interface TransBtnProps { className: string; style?: React.CSSProperties; customizeIcon: RenderNode; customizeIconProps?: any; onMouseDown?: React.MouseEventHandler; onClick?: React.MouseEventHandler; children?: React.ReactNode; } /** * Small wrapper for Select icons (clear/arrow/etc.). * Prevents default mousedown to avoid blurring or caret moves, and * renders a custom icon or a fallback icon span. * * DOM structure: * * { icon || {children} } * */ declare const TransBtn: React.FC; export default TransBtn;