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; /** * Allows custom styling */ className?: string; /** * Human-readable selector used for writing tests */ "data-cy"?: string; children: React.ReactNode; } declare const MessagePanel: ({ appearance, heading, children, primaryAction, secondaryAction, className, "data-cy": dataCy }: MessagePanelProps) => React.JSX.Element; export default MessagePanel;