import type { BulkSceneUpdateInput } from './generated/index.js'; import type { StashClient } from './client.js'; /** * Apply a `bulkSceneUpdate` across many scenes without tripping over huge id * arrays: split `input.ids` into chunks and issue one mutation per chunk, * aggregating the returned scenes. The other input fields (tag_ids, studio_id, * title, ...) are carried onto every chunk unchanged. Default chunk size 100. */ export declare function bulkSceneUpdateChunked(client: Pick, input: BulkSceneUpdateInput, opts?: { chunkSize?: number; }): Promise<{ id: string; }[]>;