/**
 * Splits a Record<string, string> into an array of smaller Records,
 * each containing no more than maxKeys entries
 *
 * @param record - The input Record to split
 * @param maxKeys - Maximum number of keys per resulting object
 * @returns Array of Records
 */
export declare function splitRecord(record: Record<string, string>, maxKeys?: number): Record<string, string>[];
