import * as React from "react"; export interface MessagePanelProps { /** * The tone of the message */ appearance?: "error" | "standard"; /** * A heading to provide a brief overview of why an empty state is appearing */ heading: string; /** * The most important action a user can take in the empty state */ primaryAction?: React.ReactNode; /** * A secondary action a user can take in the empty state */ secondaryAction?: React.ReactNode; children: React.ReactNode; } declare const MessagePanel: { ({ appearance, heading, children, primaryAction, secondaryAction }: MessagePanelProps): JSX.Element; defaultProps: { appearance: string; }; }; export default MessagePanel;