import type { DeploymentService, DeploymentConfig } from '@pikku/core/services'; import type { JWTService } from '@pikku/core/services'; import type { SecretService } from '@pikku/core/services'; export declare class LambdaDeploymentService implements DeploymentService { private jwt; private secrets; private client; private bindings; constructor(jwt: JWTService | undefined, secrets: SecretService, functionBindings: Record); init(): Promise; start(_config: DeploymentConfig): Promise; stop(): Promise; invoke(funcName: string, data: unknown, session?: unknown, traceId?: string): Promise; }