/** * The 'Titles' type. * * This type represents the titles of a component. * * @prop title - The title. * @prop xAxisTitle - The x-axis title. * @prop yAxisTitle - The y-axis title. * @interface */ type Titles = { title?: string; xAxisTitle?: string; yAxisTitle?: string; }; export default Titles;