
import * as React from 'react';


interface ActionsLabelProps {
  slot?: string;
  id?: string | number;
  className?: string;
  style?: React.CSSProperties;
  bold?: boolean;
  onClick?: (event?: any) => void;
  ref?: React.MutableRefObject<{el: HTMLElement | null}>;
  color?: string;
  colorTheme?: string;
  textColor?: string;
  bgColor?: string;
  borderColor?: string;
  rippleColor?: string;
  themeDark?: boolean;
  children?: React.ReactNode;
}
declare const ActionsLabel: React.FunctionComponent<ActionsLabelProps>;

export default ActionsLabel;
  