export declare enum DataType { STRING = "http://www.w3.org/2001/XMLSchema#string", DECIMAL = "http://www.w3.org/2001/XMLSchema#decimal", INTEGER = "http://www.w3.org/2001/XMLSchema#integer", FLOAT = "http://www.w3.org/2001/XMLSchema#float", DOUBLE = "http://www.w3.org/2001/XMLSchema#double", DATETIME = "http://www.w3.org/2001/XMLSchema#dateTime", BOOLEAN = "http://www.w3.org/2001/XMLSchema#boolean", IRI = "http://www.w3.org/2001/XMLSchema#anyURI", SIMPLELITERAL = "http://www.w3.org/2001/XMLSchema#string" } export declare function castDataType(typeString: string | undefined): DataType | undefined; //# sourceMappingURL=DataTypes.d.ts.map