import { FP } from "../machine/Aspect"; /** * Convenience function to create a new fingerprint, using default strategy of * sha-ing stringified data. * Type must be supplied. Name is optional, and will default * to type. * @return {FP} */ export declare function fingerprintOf(opts: { type: string; name?: string; data: DATA; }): FP;