import { LocalBase } from "./local-base"; export declare class Primitive extends LocalBase { readonly type: string; readonly index: boolean; readonly valueType: Primitive.ValueType; constructor(name: string, args: Primitive.CtorArgs); } export declare module Primitive { interface CtorArgs extends LocalBase.CtorArgs { index?: boolean; valueType?: ValueType; } type ValueType = "unknown" | "guid"; }