import { Theme } from './utils' declare class Themer { themeConfig: Theme constructor() get( section: TSection, sectionKey: TSectionKey ): Theme[TSection][TSectionKey] set( section: TSection, sectionKey: TSectionKey, themeValue: string ): void subscribe(listener: (themeConfig?: Theme) => void): () => void } declare const themer: Themer export default themer