UNPKG

communication-react-19

Version:

React library for building modern communication user experiences utilizing Azure Communication Services (React 19 compatible fork)

23 lines 624 B
import React from 'react'; import { Theme as ThemeV8 } from '@fluentui/react'; /** * Props for {@link FluentThemeProvider}. * * @private */ export interface FluentV9ThemeProviderProps { /** Children to be themed. */ children: React.ReactNode; /** FluentUI v8 theme to be mapped to FluentUI v9 theme */ v8Theme: ThemeV8; className?: string; } /** * @private */ export declare const useFluentV9Wrapper: () => Record<"body", string>; /** * @private */ export declare const FluentV9ThemeProvider: (props: FluentV9ThemeProviderProps) => JSX.Element; //# sourceMappingURL=FluentV9ThemeProvider.d.ts.map