import { Component } from 'react'; import type { MetricProps } from './props'; /** --- category: components --- **/ declare class Metric extends Component { static displayName: string; static readonly componentId = "Metric"; static allowedProps: readonly (keyof { textAlign: "start" | "center" | "end"; renderLabel?: import("@instructure/shared-types").Renderable; renderValue?: import("@instructure/shared-types").Renderable; isGroupChild: boolean; })[]; static defaultProps: { textAlign: string; isGroupChild: boolean; }; ref: Element | null; handleRef: (el: Element | null) => void; componentDidMount(): void; componentDidUpdate(): void; render(): import("@emotion/react/jsx-runtime").JSX.Element; } export default Metric; export { Metric }; //# sourceMappingURL=index.d.ts.map