import type { MetricGroupTheme, OtherHTMLAttributes } from '@instructure/shared-types'; import type { WithStyleProps, ComponentStyle } from '@instructure/emotion'; type MetricGroupOwnProps = { /** * children of type `Metric` */ children?: React.ReactNode; }; type PropKeys = keyof MetricGroupOwnProps; type AllowedPropKeys = Readonly>; type MetricGroupProps = MetricGroupOwnProps & WithStyleProps & OtherHTMLAttributes; type MetricGroupStyle = ComponentStyle<'metricGroup'>; declare const allowedProps: AllowedPropKeys; export type { MetricGroupProps, MetricGroupStyle }; export { allowedProps }; //# sourceMappingURL=props.d.ts.map