/*! * Copyright (c) Microsoft. All rights reserved. * Licensed under the MIT license. See LICENSE file in the project. */ import type { Theme } from '@thematic/core'; import type { FC, ReactNode } from 'react'; export interface ThematicProviderProps { theme?: Theme; children?: ReactNode; } /** * Provider component from the default context for Thematic */ export declare const ThematicProvider: FC;