export interface OmniaBlock {
    category?: string;
}
export interface SpfxWebpartGalleryOptions {
    documentationUrl?: string;
    imageRelativeUrl?: string;
    downloadFileName?: string;
}
declare module "@omnia/tooling-composers/internal-do-not-import-from-here/ComponentComposer" {
    interface IWebComponentComposer {
        registerSpfxWebpart?(omniaBlock?: OmniaBlock): IWebComponentComposer;
        registerSpfxWebpartGallery?(options?: SpfxWebpartGalleryOptions): IWebComponentComposer;
    }
}
