export type CalloutPropsType = React.PropsWithChildren<{
    title?: string;
    cta?: React.ReactNode;
    illustrationUrl?: string;
    variant: "warning" | "neutral" | "error";
    className?: string;
}>;
export declare const Callout: ({ title, children, cta, variant, illustrationUrl, className, }: CalloutPropsType) => import("react/jsx-runtime").JSX.Element;
export default Callout;
