import type { IDestination } from "./index"; export interface IKinesisEvent { StreamName: string; enabled?: boolean; batchSize?: number; maximumRetryAttempts?: number; startingPosition?: string; startingPositionTimestamp?: number; parallelizationFactor?: number; functionResponseType?: "ReportBatchItemFailures"; consumer?: boolean | string; tumblingWindowInSeconds?: number; onFailure?: IDestination; } export declare const parseKinesis: (event: any, Outputs: any, resources: any) => Partial | undefined;