export declare class GdkCrypto { constructor(); static getMd5(str: string): string; static getRandomString(byteLenght: number): string; static generateKeyAES(p: string): string; static encryptAES(text: string): string; static decryptAES(text: string): string; }