import React, { HTMLProps } from 'react'; interface CalloutProps extends HTMLProps { children?: React.ReactNode; className?: string; color?: string; background?: string; placement: 'top' | 'bottom' | 'left' | 'right'; } declare const Callout: { ({ className, color, background, placement, children, ...props }: CalloutProps): JSX.Element; displayName: string; defaultProps: { className: string; color: string; background: string; placement: string; }; }; export default Callout;