import InternalSpace from './Space'; import Compact from './compact'; type InternalSpaceType = typeof InternalSpace; interface SpaceInterface extends InternalSpaceType { Compact: typeof Compact; } declare const Space: SpaceInterface; export default Space;