import { DesignSystem } from '@microsoft/fast-foundation'; export declare function createDesignSystemProxy(designSystem: DesignSystem): DesignSystem; /** * Provides a design system for the specified element either by returning one that was * already created for that element or creating one. * @param element - The element to root the design system at. By default, this is the body. * @param prefix - The prefix for the design system. By default, this is 'foundation'. * @param tokens - The tokens for the design system. By default, this is the foundation tokens. * @param values - The values for the design system. By default, this is the foundation values. * @returns A Foundation Design System * @public */ export declare const provideDesignSystem: (element?: HTMLElement, prefix?: string, tokens?: any, values?: any) => Pick; //# sourceMappingURL=provide-design-system.d.ts.map