import type { ReactElement, ReactNode } from 'react'; import { type BoxProps } from '../Box'; import { type IconProps } from '../Icon'; export type CalloutProps = Omit & { type?: 'info' | 'success' | 'warning' | 'danger'; title?: ReactNode; children?: ReactNode; icon?: IconProps['name']; actions?: ReactElement; }; declare const Callout: ({ type, title, children, icon, className, actions, ...props }: CalloutProps) => import("react/jsx-runtime").JSX.Element; export default Callout; //# sourceMappingURL=Callout.d.ts.map