export interface PathReference { $ref: string; } export type Refable = T | PathReference; export interface Dereferenced { instance: T; name: string; fromRef?: boolean; } export type ExtensionKey = `x-${string}`; export type Extensions = { [key in ExtensionKey]: any; }; //# sourceMappingURL=common.d.ts.map