import type { PreprocessContext } from "../context.js"; /** * Removes any occurrence of `allOf: []` from the given types. * * Without this, the generator generates superfluous types which look something like `type Link = {}` */ export declare const removeEmptyAllOfs: (context: PreprocessContext) => void;