@muraldevkit/ui-toolkit 4.52.4 → 4.53.0
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.
|
@@ -33,6 +33,7 @@ export interface MrlToolbarProps extends React.ComponentPropsWithRef<'div'> {
|
|
|
33
33
|
* MrlToolbar component.
|
|
34
34
|
*
|
|
35
35
|
* @param props The MrlToolbar component properties.
|
|
36
|
+
* @param ref The ref to forward to the toolbar div element.
|
|
36
37
|
* @returns The MrlToolbar component.
|
|
37
38
|
*/
|
|
38
|
-
export declare const MrlToolbar:
|
|
39
|
+
export declare const MrlToolbar: React.ForwardRefExoticComponent<Omit<MrlToolbarProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|