import type { Encrypted } from "@raytio/types"; /** * Determines where the input is an encrypted Raytio object * @param value anything * @returns true or false depending on whether the input is an encrypted Raytio object */ export declare const isEncrypted: (value: unknown) => value is Encrypted; /** * Determines where the input is an encrypted Raytio file * @param value anything * @returns true or false depending on whether the input is an encrypted Raytio file */ export declare const isEncryptedFile: (value: unknown) => value is Encrypted; /** * Given a profile object's properties, returns the number * of properties that are encryted. */ export declare const someEncrypted: (obj: T) => number;