import { type Token } from '@odata/parser';
export declare enum Edm {
    null = "null",
    Boolean = "Edm.Boolean",
    Byte = "Edm.Byte",
    Date = "Edm.Date",
    DateTimeOffset = "Edm.DateTimeOffset",
    Decimal = "Edm.Decimal",
    Double = "Edm.Double",
    Guid = "Edm.Guid",
    Int16 = "Edm.Int16",
    Int32 = "Edm.Int32",
    Int64 = "Edm.Int64",
    SByte = "Edm.SByte",
    Single = "Edm.Single",
    String = "Edm.String"
}
export declare function processLiteral(token: Token): Date | boolean | number | string;
