import { PropsWithChildrenAndClassName } from '../../types'; interface InfoBoxProps extends PropsWithChildrenAndClassName { variant: 'warning' | 'note' | 'important' | 'tip'; } /** * **JSON-format type: note, important, warning, tip** * * A "box" with some information, of three different types: `note`, `important`, `warning` and `tip`. They always include a `title` as their first child, and then the actual content of the box. Sometimes, the content is wrapped in `admonitionBlocks`s with their own `title`s. * * Children: `[title [any|admonitionBlock]+]` * * @param originalChildren * @param variant * @param className * @constructor */ declare function InfoBox({ children: originalChildren, variant, className, ...props }: InfoBoxProps): import("react/jsx-runtime").JSX.Element; export { InfoBox };