export { default as SizesForGlobal } from './sizes/sizes-for-global-ctrl'; export { default as FontForGlobal } from './font/font-ctrl'; export { default as BackgroundForGlobal } from './background/background-ctrl'; import SizesInterface from './sizes/SizesInterface'; import BackgroundInterface from './background/BackgroundInterface'; import FontInterface from './font/FontInterface'; export default interface GlobalInterface { sizes: SizesInterface; background: BackgroundInterface; font: FontInterface; }