/** @jsx jsx */ import { FC } from 'react'; import { Component } from '@component-controls/core'; export interface CommmitsPopoverProps { /** * component that will be displayed the commits */ component?: Component; } /** * link displaying the total commits on a component * with a popover on click that will display the list of commits */ export declare const CommitsPopover: FC;