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; } declare const MessagePanelWithGraphic: ({ graphicSrc, graphicDimensions, heading, children, primaryAction, secondaryAction }: MessagePanelWithGraphicProps) => JSX.Element; export default MessagePanelWithGraphic;