import { type SyntheticEvent } from 'react'; import type { InputProps } from '../types'; type UseLogicParams = Pick; export declare const useLogic: ({ value, disabled, inputRef: externalInputRef, onChange, }: UseLogicParams) => { inputRef: import("react").RefObject; isVisibleClearButton: boolean; handleClearAll: (event: SyntheticEvent) => void; }; export {};