/* eslint-disable no-underscore-dangle */ declare module "next-translate/Link" { type NextLink = import("next/link"); declare const _default: NextLink; export default _default; } declare module "next-translate/useTranslation" { export default function useTranslation(): { t: (key: string, query?: {[name: string]: string | number}) => string; lang: string; }; }