export type jwtValidationResponse = { valid: boolean; message: string; }; export declare const validateToken: (validateOptions: { token?: string; domain?: string; }) => Promise;