import { HandleServerFunctionOptions } from '@solidjs/web/server-functions/server';
import { StartStorageContext } from '@tanstack/start-storage-context';
export interface HandleSolidServerFunctionRequestOptions extends HandleServerFunctionOptions {
    startContext?: Partial<StartStorageContext>;
}
export declare function handleSolidServerFunctionRequest(request: Request, options?: HandleSolidServerFunctionRequestOptions): Promise<Response>;
