import { System } from './system'; interface EntryPointOptions { mode: 'development' | 'production'; destination: string; userEntryPoint: string; gitHash?: string; sdkVersion?: string; } export declare function renderEntryPointAsync(sys: System, { mode, destination, userEntryPoint, gitHash, sdkVersion }: EntryPointOptions): Promise; export {};