@muraldevkit/ui-toolkit 1.23.0 → 1.23.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,4 @@
1
- /// <reference types="react" />
1
+ import React from 'react';
2
2
  import { AttrsObject } from '../../../../utils';
3
3
  import { RightActionConfig, InputStates } from '../../constants';
4
4
  /**
@@ -30,7 +30,8 @@ interface MrlTextInputProps {
30
30
  * Allows the user to input plain text
31
31
  *
32
32
  * @param {MrlTextInputProps} props - the component props
33
+ * @param {HTMLInputElement} ref - a ref to the input element in the DOM
33
34
  * @returns a text input element
34
35
  */
35
- export declare function MrlTextInput({ attrs, inputId, isClearable, dynamicIcon, hookClear, persistIcon, placeholder, state, value }: MrlTextInputProps): JSX.Element;
36
+ export declare const MrlTextInput: React.ForwardRefExoticComponent<MrlTextInputProps & React.RefAttributes<HTMLInputElement>>;
36
37
  export {};