import * as react from 'react';
import { HTMLAttributes, ReactNode } from 'react';
declare const Callout: react.ForwardRefExoticComponent, "title" | "icon" | "type"> & {
title?: ReactNode;
/**
* @defaultValue info
*/
type?: "info" | "warn" | "error";
/**
* Force an icon
*/
icon?: ReactNode;
} & react.RefAttributes>;
export { Callout };