import bacnet, { ApplicationTag, type BACNetAppData } from '@bacnet-js/client'; declare const BACnetClient: typeof bacnet.default; /** * Type representing the BACnet client instance from the underlying library */ export type BACNetClientType = InstanceType; /** * Ensures that a value or array of values is returned as an array * * @param val - A single value or array of values * @returns An array containing the input value(s) * @typeParam T - The type of the values */ export declare const ensureArray: (val: T | T[]) => T[]; /** * Start date of the process. */ export declare const PROCESS_START_DATE: Date; /** * Standard time zone offset local to the computer running this code. */ export declare const STD_TZ_OFFSET: number; /** * Returns whether daylight saving time is in effect for a given date, * relative to the local time zone of the computer running this code. */ export declare const isDstInEffect: (date: Date) => boolean; export declare const isNumericApplicationTag: (tag: ApplicationTag) => tag is ApplicationTag.REAL | ApplicationTag.UNSIGNED_INTEGER | ApplicationTag.SIGNED_INTEGER; export declare const APPDATA_NULL: BACNetAppData; export {}; //# sourceMappingURL=utils.d.ts.map