import { Client } from '../client/interfaces/Client'; import { Model } from '../client/interfaces/Model'; /** * Get the full list of models that are extended by the given model. * This list is used when we have the flag "useUnionTypes" enabled. * @param model * @param client */ export declare function getExtendedByList(model: Model, client: Client): Model[];