export declare const isTokenMatched: (token: string, storedHash: string) => boolean; export declare const encryptToken: (token?: string) => string; export declare const encryptSecret: (token?: string, secret?: string) => string; export declare const decryptSecret: (token?: string, secret?: string) => string;