export interface Params { [param: string]: string | string[]; } export declare type StaticPath

= string | { params: P; }; export interface StaticPropsContext

{ path: string; params: P; } export declare function build(args?: string[]): Promise;