import { JWTDecoded } from '@kinde/jwt-decoder'; /** * Checks if the given audience is present in the token * @param token - JWT to be checked, can be a string or a decoded JWT token * @returns - True if the audience is present in the token, false otherwise */ export declare const checkAudience: (token?: string | JWTDecoded, audience?: string) => boolean;