import * as React from "react"; import { MessagePanelProps } from "./MessagePanel"; interface GraphicDimensions { width?: number; height?: number; } interface MessagePanelWithGraphicProps extends MessagePanelProps { /** * The source of the image that appears in the empty state */ graphicSrc: string; /** * The expected width and/or height dimensions of the graphic */ graphicDimensions?: GraphicDimensions; /** * Human-readable selector used for writing tests */ "data-cy"?: string; /** * Allows custom styling */ className?: string; } declare const MessagePanelWithGraphic: ({ className, graphicSrc, graphicDimensions, heading, children, primaryAction, secondaryAction, "data-cy": dataCy }: MessagePanelWithGraphicProps) => React.JSX.Element; export default MessagePanelWithGraphic;