import type { FunctionComponent } from 'react'; import { ShortcutProps } from '../Shortcut/Shortcut'; import { GridItemProps, GridProps } from '@patternfly/react-core'; /** extends GridProps */ export interface ShortcutGridProps extends GridProps { /** Array of shortcuts to be displayed in the grid */ shortcuts: ShortcutProps[]; /** Shortcut GridItem props */ gridItemProps?: GridItemProps; /** Custom OUIA ID */ ouiaId?: string | number; } declare const ShortcutGrid: FunctionComponent; export default ShortcutGrid;