import type { attributes } from './attributes'; import type { CommonDescription } from './CommonDescription'; import type { Meta } from './Meta'; export declare type APIInfoPatch = { /** * indicates that this API is marked as deprecated */ deprecated: boolean; deprecatedDescription?: CommonDescription; attributes?: attributes; meta?: Meta; };