import type { BaseComponentContext } from '@microsoft/sp-component-base'; import type { IPropertyPaneConsumer } from './IPropertyPaneConsumer'; interface IPropertyPaneConsumerWithManifest extends IPropertyPaneConsumer { readonly context: BaseComponentContext; } /** * Determines if the specified property pane consumer is a consumer with a manifest */ export declare function isConsumerWithManifest(consumer?: IPropertyPaneConsumer): consumer is IPropertyPaneConsumerWithManifest; /** * Determines if the specified consumer is a webpart. */ export declare function isWebpart(consumer: IPropertyPaneConsumer): boolean; export {}; //# sourceMappingURL=utility.d.ts.map