import type { NewComponentTypes } from '@instructure/ui-themes'; import type { TabsTabProps, TabsTabStyle } from './props'; type StyleParams = { variant: TabsTabProps['variant']; isSelected: TabsTabProps['isSelected']; isDisabled: TabsTabProps['isDisabled']; isOverflowScroll: TabsTabProps['isOverflowScroll']; }; /** * --- * 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 and passed through data 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["TabsTab"], params: StyleParams) => TabsTabStyle; export default generateStyle; //# sourceMappingURL=styles.d.ts.map