import React from "react"; import type { BrandsWithTr } from "@raiadrogasil/pulso-tokens"; import type { TThemes } from "@raiadrogasil/pulso-design-tokens"; type TFlattenThemes = BrandsWithTr | TThemes; export interface Props { theme: TFlattenThemes; children: React.ReactNode; } export default function ThemeProvider({ children, theme }: Props): JSX.Element; export {};