@linzjs/step-ag-grid
Version:
[](https://github.com/semantic-release/semantic-release) > Reusable [ag-grid](https://www.ag-grid.com/) component for LINZ / Toitū te whenua.
10 lines (9 loc) • 651 B
TypeScript
import { LegacyRef, ReactElement } from 'react';
import { BaseProps } from '../types';
import { withHoveringResultProps } from '../utils/withHovering';
export interface FocusableItemProps extends BaseProps, withHoveringResultProps {
disabled?: boolean;
children: (ref: LegacyRef<any>) => ReactElement;
}
export declare const FocusableItemFr: ({ className, disabled, children, isHovering, menuItemRef, externalRef, ...restProps }: FocusableItemProps) => import("react/jsx-runtime").JSX.Element;
export declare const FocusableItem: import("react").ForwardRefExoticComponent<Omit<FocusableItemProps, "ref"> & import("react").RefAttributes<any>>;