import { JSX } from 'react/jsx-runtime'; import * as React from "react"; export type CalloutType = "success" | "info" | "warning" | "danger"; export interface CalloutProps { type: CalloutType; children: React.ReactNode; className?: string; onClose?: () => unknown; } export declare function Callout(props: CalloutProps): JSX.Element; //# sourceMappingURL=Callout.d.ts.map