import { CalloutCompound } from './types'; /** * Informational callout with `variant` (info|success|warning|error), an * optional `icon`, `title`, and `description`. Renders with `role="status"` * by default; pass `role="alert"` for urgent feedback. Supports compound * children via `Callout.Icon`, `.Title`, and `.Description` slots. * * Compound slots: `Callout.Icon`, `Callout.Title`, `Callout.Description`. */ declare const Callout: CalloutCompound; export default Callout;