import { ImportEvent } from '../event/import.event'; export declare const ACTION_CSV_BATCH_PROCESS = "csv-batch-process"; export declare const ACTION_SINGLE_IMPORT_PROCESS = "single-import-process"; /** SQS hard limits */ export declare const SQS_MAX_BATCH_SIZE = 10; export declare const SQS_MAX_MESSAGE_BYTES: number; export declare const SQS_MESSAGE_BYTE_OVERHEAD = 1024; export declare const SQS_SAFE_BODY_BYTES: number; export declare const SQS_PAYLOAD_ENVELOPE_BYTES = 300; export interface SqsBatchPayload { action: string; tableName: string; tenantCode: string; sourceId: string; s3Key: string; items: any[]; } export interface SqsSinglePayload extends ImportEvent { action: string; }