import React from 'react'; import type { AxisCoordinates } from '../types'; type EmptyStateProps = { coordinates: AxisCoordinates; content: string; }; declare const EmptyState: ({ content, coordinates }: EmptyStateProps) => React.JSX.Element; export default EmptyState;