type InputValue = string | React.ChangeEvent;
type SetInputValue = (input?: InputValue) => void;
type UseInput = [string, SetInputValue];
/**
* Hook that manages input field state
* Handles both string values and React change events
*
* @param initialValue - Initial input value
* @returns Tuple with current value and setter function
*/
declare function useInput(initialValue: string): UseInput;
export { useInput };