import { ChangeEvent } from 'react'; /** * Returns the value and onChange handler for a text input. */ export declare function useTextProps(params: { value: string; onChange: (value: string | undefined) => void; }): { value: string; onChange: (event: ChangeEvent) => void; };