
import * as React from 'react';


interface GridItemProps {
  slot?: string;
  id?: string | number;
  className?: string;
  style?: React.CSSProperties;
  children ?: any;
  label?: string;
  icon?: any;
  to?: string;
  onClick ?: (event?: any) => void;
  key?: string;
  ref?: React.MutableRefObject<{el: HTMLElement | null}>;
  disabled?: boolean;
  children?: React.ReactNode;
}
declare const GridItem: React.FunctionComponent<GridItemProps>;

export default GridItem;
  