import React from 'react'; declare type Props = { 'data-qa'?: string; children?: any; text?: string; title?: string; ctaLink?: string; ctaText?: string; onClose?: Function; onClick?: Function; theme?: 'info' | 'negative' | 'alert' | 'neutral' | 'newsShort'; infoText?: string; hasIcon?: boolean; }; declare const Callout: React.FC; export default Callout;