import { DesignTokens } from '../types/ui-config/design-tokens'; /** * Provides the design system new tokens to consume values from for styling the Dyte UI Kit's UI. * @param el The element/node you want to _provide_ Dyte's design system. * @param tokens The design tokens you want to updated. */ export declare const provideDyteDesignSystem: (el: HTMLElement, { spacingBase, borderRadius, borderWidth, colors, fontFamily, googleFont, theme, tokenPrefix, }: Omit) => void;