import * as react from 'react';
import { HTMLAttributes, ReactNode } from 'react';
import { C as Color } from './types-8Sv0rCjw.cjs';
interface CalloutProps extends HTMLAttributes {
children: ReactNode;
color?: Color;
icon?: ReactNode;
dismissible?: boolean;
onDismiss?: () => void;
className?: string;
}
declare const Callout: react.ForwardRefExoticComponent>;
export { Callout, type CalloutProps };