import type { CodecType, Subscription, Transport } from '@novasamatech/host-api'; import { Theme } from '@novasamatech/host-api'; export type ThemeMode = CodecType; export declare function createThemeProvider(transport?: Transport): { subscribeTheme(callback: (theme: ThemeMode) => void): Subscription; };