export interface IBlockingComposer { /** Block a manifest. E.g. Provide omnia service id and manifest id for the target manifest you want to block */ externalManifest: (omniaServiceId: string, manifestId: string) => IBlockingComposer; } export declare class BlockingComposer implements IBlockingComposer { externalManifest: (omniaServiceId: string, manifestId: string) => this; }