import { Kinesis } from 'aws-sdk'; /** * Puts the records into the specified stream * @type {[type]} */ export declare function putRecords({streamName, partitionKeys, partitionKey, recordData}: { streamName: string; partitionKeys?: [string]; partitionKey?: string; recordData: T[]; }): Promise;