export type PluginConfig = { build?: { esbuild?: unknown; }; custom?: { esbuild?: unknown; }; functions?: Record; plugins?: unknown[]; }; type ServerlessFunction = { handler?: string; }; export {};