import type { NumberInputProps, NumberInputStyle } from './props'; import type { NewComponentTypes, SharedTokens } from '@instructure/ui-themes'; type StyleParams = { size: NumberInputProps['size']; textAlign: NumberInputProps['textAlign']; interaction: NumberInputProps['interaction']; invalid: boolean; success: boolean; }; /** * --- * 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: ReturnType, params: StyleParams, sharedTokens: SharedTokens) => NumberInputStyle; export default generateStyle; //# sourceMappingURL=styles.d.ts.map