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; }