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