import type { ExecInfo, ExecRegistry } from "./types.ts"; /** * @deprecated Frozen 1.x compatibility helper. Hosts own executable admission * and presentation through their current composition ({§executor-advertise-compat}). */ export default class Advertise { static readonly NO_EXECS_NOTICE = "No EXEC operations permitted"; static contribute(registry: ExecRegistry, isPermitted: (tag: string) => boolean): { permitted: ExecInfo[]; notice: string | null; }; } //# sourceMappingURL=advertise.d.ts.map