import type { MetricProps, MetricStyle } from './props'; import { NewComponentTypes } from '@instructure/ui-themes'; type StyleParams = { textAlign: MetricProps['textAlign']; }; /** * --- * private: true * --- * Generates the style object from the theme and provided additional information * @param {Object} componentTheme The theme variable object. * @param {Object} params the props of the component, the style is applied to * @return {Object} The final style object, which will be used in the component */ declare const generateStyle: (componentTheme: ReturnType, params: StyleParams) => MetricStyle; export default generateStyle; //# sourceMappingURL=styles.d.ts.map