import { defaultThemeInputs } from './theming/defaultThemeInputs'; import { getTheme } from './theming/getTheme'; export interface IOption { value: Value; label: string; } export declare type Value = string | number; export declare type ThemeInput = typeof defaultThemeInputs; export declare type Theme = ReturnType;