import { PropTypes } from "@krowdy-ui/core";

export type ModalInfoProps = {
  open   ?: boolean,
  actions?: Array<unknown>,
  color?: PropTypes.Color;
  title  ?: string,
  onClose?: Function,
  content?: unknown
};

declare const ModalInfo: React.ComponentType<ModalInfoProps>;

export default ModalInfo;