import { type Handler } from '@netlify/functions'; import type { SSRManifest } from 'astro'; export interface Args { builders?: boolean; binaryMediaTypes?: string[]; } export declare const createExports: (manifest: SSRManifest, args: Args) => { handler: Handler; };