import { Client } from '../client/interfaces/Client'; import { Model } from '../client/interfaces/Model'; /** * This post processor will convert types to union types. For more information * please check the documentation. In a nutshell: By setting the "useUnionTypes" * flag we will convert base types to a union of types that are extended from * the base type. * @param model * @param client * @param useUnionTypes */ export declare function postProcessUnionTypes(model: T, client: Client, useUnionTypes: boolean): T;