import type React from 'react'; import type { BaseInputProps, InputProps } from '../interface'; export declare function hasAddon(props: BaseInputProps | InputProps): boolean; export declare function hasPrefixSuffix(props: BaseInputProps | InputProps): boolean; export declare function resolveOnChange(target: E, e: React.ChangeEvent | React.MouseEvent | React.CompositionEvent, onChange: undefined | ((event: React.ChangeEvent) => void), targetValue?: string): void; export interface InputFocusOptions extends FocusOptions { cursor?: 'start' | 'end' | 'all'; } export declare function triggerFocus(element?: HTMLInputElement | HTMLTextAreaElement, option?: InputFocusOptions): void;