import type { IConstraintHandler } from '../constraints/registry'; import type { IResourceKindConfig } from '../resources/resourceRegistry'; export interface IManagedDeliveryPlugin { resources?: IResourceKindConfig[]; constraints?: IConstraintHandler[]; } export declare const registerManagedDeliveryPlugin: (plugin: IManagedDeliveryPlugin) => void;