import type { AppRootState } from '../../types'; /** * @category Redux Selector */ export declare const tokensSelector: (state: AppRootState) => import("../../types").Tokens | null; /** * @category Redux Selector */ export declare const tokensPersistenceSelector: (state: AppRootState) => import("../..").TokensPersistence; /** * @category Redux Selector */ export declare const accessTokenSelector: (state: AppRootState) => { token: string; expiration?: string | null | undefined; } | null;