import { Route, SEOConfig } from '../../types'; import React from 'react'; export interface SSGContext { route: Route; params: { [key: string]: string; }; searchParams: { [key: string]: string | string[] | undefined; }; seoConfig?: SEOConfig; } export declare function buildStaticPages(routes: Route[], App: React.ComponentType, outDir: string, getStaticProps?: (route: Route) => Promise<{ [key: string]: any; }[]>): Promise;