declare const rate_limits: {
    feeds: {
        items: string[];
        prices: string[];
        promotion: string[];
        inventory: string[];
    };
};
declare const feed_statuses: {
    RECEIVED: string;
    INPROGRESS: string;
    PROCESSED: string;
    ERROR: string;
};
declare const ingestion_statuses: {
    DATA_ERROR: string;
    SYSTEM_ERROR: string;
    TIMEOUT_ERROR: string;
    SUCCESS: string;
    INPROGRESS: string;
};
