import { BackgroundExecutionListener } from './background-execution-listener'; import { BackgroundExecutionEvent } from './background-execution-event'; import { DynamoRatchetLike } from '@bitblit/ratchet/aws'; export declare class BackgroundDynamoLogTableHandler implements BackgroundExecutionListener { private dynamo; private tableName; private env; private backgroundQueueName; constructor(dynamo: DynamoRatchetLike, tableName: string, env: string, backgroundQueueName: string); onEvent(event: BackgroundExecutionEvent): Promise; }