import type { PolymorphicComponent } from "../types/helpers";
import { FlexItem } from "./FlexItem";
/** @alpha */
export interface NoteProps {
/** The variant/type of note */
variant: "info" | "alert" | "warn" | "tip";
}
/**
* A note component to highlight important information.
*
* @example Info note
*
* ```tsx
*
* Note
* This is an informational note.
* ;
* ```
*
* @example Alert note
*
* ```tsx
*
* Alert
* This is an alert message!
* ;
* ```
*
* @example Warning note
*
* ```tsx
*
* Warning
* This is a warning message.
* ;
* ```
*
* @example Tip note
*
* ```tsx
*
* Tip
* This is a helpful tip.
* ;
* ```
*
* @alpha
*/
export declare const Note: PolymorphicComponent;
/**
* A text component for the content inside a Note.
*
* @example Basic usage
*
* ```tsx
* Content inside a note.;
* ```
*
* @alpha
*/
export declare const NoteText: PolymorphicComponent<"p", {}>;
//# sourceMappingURL=Note.d.ts.map