import { JSONAModel } from "../../interfaces/JSONAModel"; import { BarJSONAModel } from "./BarJSONAModel"; export declare type FooJSONAModel = JSONAModel<{ name: string; bars?: string[]; }, { foobar?: BarJSONAModel; manyBars?: BarJSONAModel[]; }>;