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