import { RefObject } from 'react'; type UseAutogrowOptions = { enabled?: boolean; }; /** * Hook for managing textarea autogrow behavior * * @param ref - Reference to the textarea element (RefObject) * @param options - Configuration options * @param options.enabled - Whether autogrow is enabled * @returns {void} This hook does not return a value * * @internal */ export declare function useAutogrow(ref: RefObject, options?: UseAutogrowOptions): void; export {};