export interface OmniaBlock { category?: string; } export interface SpfxWebpartGalleryOptions { documentationUrl?: string; imageRelativeUrl?: string; downloadFileName?: string; } declare module "../../../tooling/composers/ComponentComposer" { interface IWebComponentComposer { registerSpfxWebpart?(omniaBlock?: OmniaBlock): IWebComponentComposer; registerSpfxWebpartGallery?(options?: SpfxWebpartGalleryOptions): IWebComponentComposer; } }