import * as React from "react"; export interface InfoBoxProps { /** * the tone of the message */ appearance?: "danger" | "default" | "info" | "success" | "warning"; /** * additional styles to extend the component */ className?: string; /** * additional styles to extend the component */ onDismiss?: (event?: React.SyntheticEvent) => void; /** * the main content of the message */ message: React.ReactNode; /** * the more prominent action presented to the user */ primaryAction?: React.ReactElement; /** * an alternate action the user could take */ secondaryAction?: React.ReactElement; children?: React.ReactNode | React.ReactNode[]; } declare const _default: ({ appearance, message, primaryAction, secondaryAction, onDismiss, className }: InfoBoxProps) => JSX.Element; export default _default;