type CustomElementDefinitionOptions = { /** Element scoped custom directives */ directives?: Record, /** Styles adopted by the shadow root. */ style?: string | string[], /** Template used by the shadow root */ template?: string, } & ElementDefinitionOptions; export default CustomElementDefinitionOptions;