import type { NewComponentTypes, SharedTokens } from '@instructure/ui-themes'; import type { SpinnerProps, SpinnerStyle } from './props'; type StyleParams = { size: SpinnerProps['size']; variant: SpinnerProps['variant']; margin: SpinnerProps['margin']; }; /** * --- * private: true * --- * Generates the style object from the theme and provided additional information * @param {Object} componentTheme The theme variable object. * @param {Object} props the props of the component, the style is applied to * @param {Object} state the state 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: NewComponentTypes["Spinner"], params: StyleParams, sharedTokens: SharedTokens) => SpinnerStyle; export default generateStyle; //# sourceMappingURL=styles.d.ts.map