import React from "react"; type CalloutVariant = "info" | "danger" | "warning" | "success" | "neutral"; export interface CalloutProps extends Omit, "title"> { variant?: CalloutVariant; title?: React.ReactNode; description?: React.ReactNode; /** Auto-dismiss after N milliseconds. CSS-only fade + collapse. */ duration?: number; } export declare const Callout: React.ForwardRefExoticComponent>; export {}; //# sourceMappingURL=Callout.d.ts.map