import { TokenProviderAllowedAppSlug } from './types'; type ItemType = "accessToken" | "extras"; export declare function makeStorageKey({ appSlug, organizationSlug, itemType, }: { appSlug: TokenProviderAllowedAppSlug; organizationSlug: string; itemType: ItemType; }): string; export declare function getPersistentJWT({ appSlug, organizationSlug, itemType, }: { /** The app for which to get the token. */ appSlug: TokenProviderAllowedAppSlug; /** The organization slug for the token we want to retrieve. */ organizationSlug?: string; /** The JWT item type you want to retrieve. */ itemType: ItemType; }): string | null; export declare function savePersistentJWT({ appSlug, jwt, organizationSlug, itemType, }: { /** The app for which to get the token. */ appSlug: TokenProviderAllowedAppSlug; /** The token to save. */ jwt: string; /** The organization slug for the token we want to store. */ organizationSlug?: string; /** The JWT item type you want to store. */ itemType: ItemType; }): void; export {};