/** * Validates a list of partitions IDs. * * It must be between 1–100 items. * * @param list The lists of strings that represent the partitions IDs. * @returns The list of strings if it's valid. Otherwise, throws an error. */ export declare function validatePartitionsIdsList(list: string[]): string[];