/** * this is the getKey function that generates an encryption Key * for you by passing your Secret Key as a parameter. * @param {string} secretKey * @returns string */ export declare const getKey: (secretKey: string) => string; /** * This is the encryption function that encrypts your payload * by passing the stringified format and your encryption Key. * @param {string} key * @param {string} text * @returns string */ export declare const encrypt: (key: string, _text: any) => string; //# sourceMappingURL=secuirity.d.ts.map