import * as React from 'react'; import { ColorTokenSet } from '@fluentui/theme'; export { Theme, PartialTheme } from '@fluentui/theme'; /** * Typing containing the definition for the `style` and `tokens` props that will be extended for the calculation of the * style prop. */ export interface StyleProps { style?: React.CSSProperties; tokens?: TTokens; } export interface StyleOptions { slotProps: ((props: TProps) => Record)[]; }