import * as React from "react"; export interface InfoBoxProps { /** * The style and 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; /** * Human-readable selector used for writing tests */ "data-cy"?: string; children?: React.ReactNode | React.ReactNode[]; } declare const _default: ({ appearance, message, primaryAction, secondaryAction, onDismiss, className }: InfoBoxProps) => React.JSX.Element; export default _default;