export declare const calloutsMdxTemplate = "---\ntitle: \"Callouts\"\ndescription: \"Make your content stand out by using callouts for extra emphasis.\"\ndate: \"2026-02-19\"\ncategory: \"Components\"\ncategoryOrder: 1\norder: 5\n---\n# Callouts\n\nMake your content stand out by using callouts for extra emphasis.\n\nYou can format them as Note, Warning, Info, Danger and Success.\n\n## Callouts Usage\n\nYou can use the Callouts component directly within your MDX files without any import. The following example shows a basic usage:\n\n```html\nThis is a note callout\nThis is a warning callout\nThis is an info callout\nThis is a danger callout\nThis is a success callout\n```\n\n\n This is a note callout\n\n\n This is a warning callout\n\n\n This is an info callout\n\n\n This is a danger callout\n\n\n This is a success callout\n\n\n## Properties\n\n\n The type of the callout: `note`, `info`, `warning`, `danger`, or `success`.\n\n\n\n A custom [Lucide](https://lucide.dev/icons) icon name. Overrides the default icon for the callout type.\n\n\n\n The content of the callout.\n";