import { Content, ContentProps } from './notabene.content';
import { Heading, HeadingProps } from './notabene-heading';
import { Icon, IconProps } from './notabene-icon';
import { Root, RootProps } from './notabene-root';
type NotabeneProps = {
Root: RootProps;
Content: ContentProps;
Heading: HeadingProps;
Icon: IconProps;
};
/**
* The Notabene Card is a component that is used to attract special attention to a message, where it would otherwise be lost in neighbouring content.
*
* @component
*
* @example
*
*
*
* Good to know!
* Lorem ipsum dolor sit amet consectetur adipisicing elit. Tenetur, provident!
*
* Do not click me
*
*
*
*/
declare const Notabene: typeof Root & {
/**
* Content component displays the detailed message.
*
* @component
*
* @example
* This is the detailed message of the notabene.
*/
Content: typeof Content;
/**
* Heading component displays the title of the notabene.
*
* @component
*
* @example
* Notabene Title
*/
Heading: typeof Heading;
/**
* Icon component displays an icon in the notabene.
*
* @component
*
* @example
*
*/
Icon: typeof Icon;
};
export { Notabene };
export type { NotabeneProps };