import { FunctionComponent } from 'react'; import { Alternate } from '../tools'; export interface LangProps { /** * URL for the default (no language) access. */ defaultUrl: string; /** * All the alternate URL for other provided languages. */ alternates: Alternate[]; } /** * The alternate link for all the languages. */ declare const Lang: FunctionComponent; export default Lang;