/** * Get User roles */ export declare function getUserRoles(): Promise; /** * Verify if the user has at least one role from the given roles * * @param claims List of roles to be verified */ export declare function verifySessionRoles(claims: string[]): Promise; export declare const isEmailVerified: () => Promise; /** * Checks if the user's profile is completed based on validation criteria. * * @async * @function isProfileCompleted * @returns {Promise} - A promise that resolves to: * - `true` if the profile is completed. * - `false` if the profile is not completed or no session exists. * - `undefined` if the profile validation is disabled in the api. * */ export declare const isProfileCompleted: () => Promise; //# sourceMappingURL=helpers.d.ts.map