import * as react_jsx_runtime from 'react/jsx-runtime'; import { ReactNode } from 'react'; declare type CalloutVariant = 'error' | 'info' | 'note' | 'quote' | 'success' | 'warning'; interface CalloutProps { children: ReactNode; label?: ReactNode | string; variant?: CalloutVariant; } declare const Callout: (props: CalloutProps) => react_jsx_runtime.JSX.Element; export { Callout as C, CalloutProps as a };