import * as React from 'react'; export interface CalloutProps extends React.HTMLAttributes { /** * The content of the callout. */ children: React.ReactNode; /** * The type of the callout. * @default "info" */ type?: 'info' | 'warning' | 'error' | 'success'; /** * The visual variant of the callout. * @default "inline" * @example "card" */ variant?: 'inline' | 'card'; /** * Additional CSS class names. */ className?: string; } export declare function Callout({ children, type, variant, className, ...props }: CalloutProps): import("react/jsx-runtime").JSX.Element;