import { FC, PropsWithChildren, ReactNode } from "react"; export declare type ISessionContextProviderProps = PropsWithChildren<{ logo?: ReactNode; /** * Discovery Index link id to fetch session from. */ link: string | false; }>; export declare const SessionContextProvider: FC;