/** * Callout — a toned info/accent/success/warning/danger notice (W2 §The Kit). * Distinct from Disclaimer: Callout highlights real information; Disclaimer is * the honesty arm for when no tool backs the ask. */ import type { PropsWithChildren } from "react"; import { type KitStyled, type KitTone } from "../tokens.js"; /** The shared vocabulary, with "info" read as a Callout has always read it: a * notice is brand-accented with the ⓘ, and it is still this component's default. * Elsewhere `info` is the status colour of a state in progress. */ export type CalloutTone = KitTone | "info"; export interface CalloutProps extends KitStyled { tone?: CalloutTone; title?: string; } export declare function Callout({ tone, title, style, children }: PropsWithChildren): import("react").JSX.Element;