import { FC, PropsWithChildren, ReactNode } from "react"; export declare type ITranslationLoaderProps = PropsWithChildren<{ logo?: ReactNode; /** * Which link from Discovery index should be used to retrieve translations. */ link: string; }>; export declare const TranslationLoader: FC;