import { Children } from "@alloy-js/core"; //#region src/markdown/components/alert.d.ts interface AlertProps { variant: "note" | "tip" | "important" | "warning" | "caution"; children: Children; } /** * Renders an alert component for a markdown file. * * @see https://github.blog/changelog/2023-12-14-new-markdown-extension-alerts-provide-distinctive-styling-for-significant-content/ * @see https://github.com/KeJunMao/vscode-markdown-alert */ declare function Alert(props: AlertProps): Children; type AlertVariantProps = Omit; /** * Renders a Note alert component for a markdown file. * * @see https://github.blog/changelog/2023-12-14-new-markdown-extension-alerts-provide-distinctive-styling-for-significant-content/ * @see https://github.com/KeJunMao/vscode-markdown-alert */ declare function NoteAlert(props: AlertVariantProps): Children; /** * Renders a Tip alert component for a markdown file. * * @see https://github.blog/changelog/2023-12-14-new-markdown-extension-alerts-provide-distinctive-styling-for-significant-content/ * @see https://github.com/KeJunMao/vscode-markdown-alert */ declare function TipAlert(props: AlertVariantProps): Children; /** * Renders an Important alert component for a markdown file. * * @see https://github.blog/changelog/2023-12-14-new-markdown-extension-alerts-provide-distinctive-styling-for-significant-content/ * @see https://github.com/KeJunMao/vscode-markdown-alert */ declare function ImportantAlert(props: AlertVariantProps): Children; /** * Renders a Warning alert component for a markdown file. * * @see https://github.blog/changelog/2023-12-14-new-markdown-extension-alerts-provide-distinctive-styling-for-significant-content/ * @see https://github.com/KeJunMao/vscode-markdown-alert */ declare function WarningAlert(props: AlertVariantProps): Children; /** * Renders a Caution alert component for a markdown file. * * @see https://github.blog/changelog/2023-12-14-new-markdown-extension-alerts-provide-distinctive-styling-for-significant-content/ * @see https://github.com/KeJunMao/vscode-markdown-alert */ declare function CautionAlert(props: AlertVariantProps): Children; //#endregion export { ImportantAlert as a, WarningAlert as c, CautionAlert as i, AlertProps as n, NoteAlert as o, AlertVariantProps as r, TipAlert as s, Alert as t }; //# sourceMappingURL=alert-BZRTtU1X.d.mts.map