import type { NewComponentTypes, SharedTokens } from '@instructure/ui-themes'; import { AvatarProps, AvatarStyle } from './props'; type StyleParams = { loaded: boolean; size: AvatarProps['size']; color: AvatarProps['color']; hasInverseColor: AvatarProps['hasInverseColor']; shape: AvatarProps['shape']; src: AvatarProps['src']; showBorder: AvatarProps['showBorder']; display: AvatarProps['display']; margin: AvatarProps['margin']; }; /** * --- * private: true * --- * Generates the style object from the theme and provided additional information * @param componentTheme The theme variable object. * @param params Additional parameters to customize the style. * @param sharedTokens Shared token object that stores common values for the theme. * @return The final style object, which will be used in the component */ declare const generateStyle: (componentTheme: NewComponentTypes["Avatar"], params: StyleParams, sharedTokens: SharedTokens) => AvatarStyle; export default generateStyle; //# sourceMappingURL=styles.d.ts.map