import React from "react"; type TextCalloutVariant = "neutral" | "info" | "warning" | "success" | "danger"; export interface TextCalloutProps extends Omit, "title"> { variant?: TextCalloutVariant; title?: React.ReactNode; description?: React.ReactNode; } export declare const TextCallout: React.ForwardRefExoticComponent>; export {}; //# sourceMappingURL=TextCallout.d.ts.map