export declare const xmlNumberTypesStrList: string[]; export declare const xmlStringTypesStrList: string[]; export declare const xmlDatetimeTypesStrList: string[]; export declare const xmlTypesStrList: readonly string[]; export type XmlTypes = (typeof xmlTypesStrList)[number]; export declare function isStringNumeric(str: string): boolean; export declare function isString(attributeType: XmlTypes): boolean; export declare function isNumber(attributeType: XmlTypes): boolean; export declare function isDate(attributeType: XmlTypes): boolean;