Files
ETB/ETB-FrontEnd/node_modules/@mui/x-charts/Toolbar/Toolbar.d.ts
Iliyan Angelov 306b20e24a Frontend start
2025-09-14 00:54:48 +03:00

12 lines
795 B
TypeScript

import * as React from 'react';
import { RenderProp } from '@mui/x-internals/useComponentRenderer';
declare const ToolbarRoot: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme>, Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof React.ClassAttributes<HTMLDivElement> | keyof React.HTMLAttributes<HTMLDivElement>>, {}>;
export interface ToolbarProps extends React.ComponentProps<'div'> {
className?: string;
/**
* A function to customize rendering of the component.
*/
render?: RenderProp<React.ComponentProps<typeof ToolbarRoot>>;
}
export declare const Toolbar: React.ForwardRefExoticComponent<Omit<ToolbarProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
export {};