import { StoryContext } from '@storybook/types'; import { ThemeSettings } from '../types'; import { ThemeOptionKeys } from './themeOptions'; export interface ExtendedThemeSettings extends Omit, ThemeOptionKeys> { colorScheme: ThemeSettings['colorScheme'] | 'all' | 'both'; density: ThemeSettings['density'] | 'all' | 'both'; family: ThemeSettings['family'] | 'all' | 'both' | 'splunk-magnetic' | 'splunk-1cd'; } export declare const normalizeThemeOptions: (paramOptions?: {}, globalOptions?: {}) => Partial; export declare const getMergedTheme: (globalsTheme: Partial | undefined | null, newTheme: Partial) => {}; export declare const getThemeOptionsFromContext: (context: StoryContext) => Partial;