type CalloutProps = { body?: string; className?: string; } & Record; export declare function Callout({ body, className, ...attributes }: CalloutProps): import("react").JSX.Element; export declare const calloutStyles = "\n .htmdx-callout .htmdx-component-body {\n background: var(--md-sys-color-primary-container);\n color: var(--md-sys-color-on-secondary-container);\n border-radius: var(--md-sys-shape-corner-large);\n padding: 18px 22px;\n font-family: var(--md-ref-typeface-brand);\n }\n .htmdx-callout .htmdx-component-body p:not([data-slot]) { margin: 0 0 8px; font-size: 1rem; color: var(--md-sys-color-on-secondary-container); }\n .htmdx-callout .htmdx-component-body p:last-child { margin-bottom: 0; }\n"; export {};