import * as React from "react"; import type { CalloutKindProp } from "../../props/vocabulary/index.js"; export type { CalloutProp, CalloutProp as CalloutProps, } from "../../props/components/feedback.prop.js"; export declare const Callout: React.ForwardRefExoticComponent & { kind?: CalloutKindProp; } & React.RefAttributes> & { Title: React.ForwardRefExoticComponent & { className?: import("../../props/index.js").ClassNameProp; children?: import("../../props/index.js").ChildrenProp; } & React.RefAttributes>; Content: React.ForwardRefExoticComponent & { className?: import("../../props/index.js").ClassNameProp; children?: import("../../props/index.js").ChildrenProp; } & React.RefAttributes>; Description: React.ForwardRefExoticComponent & { className?: import("../../props/index.js").ClassNameProp; children?: import("../../props/index.js").ChildrenProp; } & React.RefAttributes>; Actions: React.ForwardRefExoticComponent & { className?: import("../../props/index.js").ClassNameProp; children?: import("../../props/index.js").ChildrenProp; } & React.RefAttributes>; };