import { Component, ReactElement } from 'react'; import type { MetricGroupProps } from './props'; /** --- category: components --- **/ declare class MetricGroup extends Component { static displayName: string; static readonly componentId = "MetricGroup"; static allowedProps: readonly "children"[]; static defaultProps: { children: null; }; ref: Element | null; handleRef: (el: Element | null) => void; componentDidMount(): void; componentDidUpdate(): void; renderChildren(): ReactElement>[] | null | undefined; render(): import("@emotion/react/jsx-runtime").JSX.Element; } export default MetricGroup; export { MetricGroup }; //# sourceMappingURL=index.d.ts.map