import { ContextReader } from '../../context/context-reader'; import { ContextWriter } from '../../context/context-writer'; import { FLocalUserNetIdBundle } from '../types/structs/binary/FLocalUserNetIdBundle'; import { FPlayerInfoHandle } from '../types/structs/binary/FPlayerInfoHandle'; import { col4 } from '../types/structs/col4'; export interface BlueprintConfig { configVersion: number; description: string; color: col4; iconID: number; referencedIconLibrary?: string; iconLibraryType?: string; lastEditedByLegacy?: FLocalUserNetIdBundle[]; lastEditedBy?: FPlayerInfoHandle; } export declare namespace BlueprintConfig { const Parse: (reader: ContextReader) => BlueprintConfig; const Serialize: (writer: ContextWriter, config: BlueprintConfig) => void; } //# sourceMappingURL=blueprint-config.d.ts.map