/// import { KauthLang } from '../common/locale'; interface IProps { token: string; validateToken: (params: { token: string; }) => Promise<{ description: string; } | null | undefined>; consumeToken: (params: { token: string; }) => Promise<{ callback: string; roleType: string; roleName: string; roleExtendValue: string; processed: boolean; } | null | undefined>; locale?: KauthLang; groupName?: string; } export declare const JoinRedirect: (props: IProps) => JSX.Element; export {};