import { NextConfig } from 'next'; interface DatoOptions { environment?: string; token?: string; } interface NextHashiCorpOptions { dato?: DatoOptions; /** * Use nextConfig.transpilePackages instead. * @deprecated */ transpileModules?: string[]; /** Controls whether or not to include next-optimized-images. Set it to true to use next-optimized-images. Defaults to false. */ nextOptimizedImages?: boolean; } export = withHashicorp; declare function withHashicorp({ dato, transpileModules, nextOptimizedImages, }?: NextHashiCorpOptions): (nextConfig?: Partial) => NextConfig;