/** * Compute a stable fingerprint of a screen's element set. * Sorted so insertion-order changes (React re-renders) don't produce false positives. * Returns first 16 hex chars of SHA-256. */ export declare function computeElementHash(elements: Array<{ role: string; meaning: string; }>): string;