/** Strips dashes and any non-hex characters from a device UDID. */ export declare function normalizeUDID(udid?: string): string; /** Case-insensitive UDID comparison; empty or missing UDIDs never match. */ export declare function sameUDID(left?: string, right?: string): boolean;