export {Ice} from './Ice.ns'; import './EnumBase'; declare module './Ice.ns' { namespace Ice { type FormatTypeName = 'DefaultFormat' | 'CompactFormat' | 'SlicedFormat'; class FormatType< Name extends FormatTypeName = FormatTypeName > extends Ice.EnumBase { static DefaultFormat: FormatType<'DefaultFormat'>; static CompactFormat: FormatType<'CompactFormat'>; static SlicedFormat: FormatType<'SlicedFormat'>; } } }