/**
 * Copyright IBM Corp. 2024, 2025
 */
export type SwaggerAPIModel = {
    swagger: '2.0';
    paths: PathModel;
};
export type PathModel = {
    [kind: string]: never;
};
//# sourceMappingURL=swagger-api.model.d.ts.map