export declare function isCodeInRange(codeRange: string, code: number): boolean; export declare function canConsumeForm(contentTypes: string[]): boolean; export declare class UnparsedObject { _data: any; constructor(data: any); } export type AttributeTypeMap = { [key: string]: { baseName: string; type: string; required?: boolean; format?: string; }; }; export declare const isNode: boolean; export declare class DDate extends Date { rfc3339TzOffset: string | undefined; } export declare function dateFromRFC3339String(date: string): DDate; export declare function dateToRFC3339String(date: Date | DDate): string;