import { JsonValue } from '@backstage/types'; /** @public */ export type TemplateFilter = (...args: JsonValue[]) => JsonValue | undefined; /** @public */ export type TemplateGlobal = ((...args: JsonValue[]) => JsonValue | undefined) | JsonValue;