/// export interface Props { image?: any; width?: string; height?: string; title?: string; linkText?: string; link?: string; onLinkClick?: () => void; secondLinkText?: string; secondLink?: string; onSecondLinkClick?: () => void; } declare function GraphError(props: Props): JSX.Element; export { GraphError };