export interface media_node { type: "media"; attrs: { type: "link" | "file"; id: string; collection: string; height?: number; width?: number; occurrenceKey?: string; alt?: string; } | { type: "external"; url: string; alt?: string; width?: number; height?: number; }; } //# sourceMappingURL=media_node.d.ts.map