import type { IDestination } from "./index"; export interface IDdbEvent { TableName: string; StreamEnabled: boolean; StreamViewType?: string; batchSize?: number; batchWindow?: number; tumblingWindowInSeconds?: number; maximumRecordAgeInSeconds?: number; maximumRetryAttempts?: number; bisectBatchOnFunctionError?: boolean; functionResponseType?: string; filterPatterns?: any; onFailure?: IDestination; } export declare const parseDdbStreamDefinitions: (Outputs: any, resources: any, event: any) => IDdbEvent | undefined;