import React from 'react'; import { IntentType, ITestableProps } from '../../../types'; export interface ICalloutProps extends ITestableProps, Omit, 'title'> { icon?: React.ReactNode | React.ReactNode[]; intent?: IntentType; title?: React.ReactNode | React.ReactNode[]; }