import { PropTypes } from "@krowdy/kds-core"; export type ModalInfoProps = { open ?: boolean, actions?: Array, color?: PropTypes.Color; title ?: string, onClose?: Function, content?: unknown }; declare const ModalInfo: React.ComponentType; export default ModalInfo;