import type { Admonition as AdmonitionSpec, AdmonitionTitle as AdmonitionTitleSpec } from 'myst-spec'; import React from 'react'; import type { NodeRenderer } from '@myst-theme/providers'; export declare enum AdmonitionKind { admonition = "admonition", attention = "attention", caution = "caution", danger = "danger", error = "error", important = "important", hint = "hint", note = "note", seealso = "seealso", tip = "tip", warning = "warning" } type Color = 'blue' | 'green' | 'yellow' | 'red'; export declare const AdmonitionTitle: NodeRenderer; export declare function Admonition({ title, kind, color, simple, dropdown, children, hideIcon, className, open, }: { title?: React.ReactNode; color?: Color; kind?: AdmonitionKind; children: React.ReactNode; simple?: boolean; dropdown?: boolean; hideIcon?: boolean; className?: string; open?: boolean; }): import("react/jsx-runtime").JSX.Element; export declare const AdmonitionRenderer: NodeRenderer; declare const ADMONITION_RENDERERS: { admonition: NodeRenderer; admonitionTitle: NodeRenderer; }; export default ADMONITION_RENDERERS; //# sourceMappingURL=admonitions.d.ts.map