import '../augmentations'; import type { GraphileConfig } from 'graphile-config'; /** * BulkDeletePlugin * * Registers `bulkDeleteX` mutation fields for each resource with the * `bulkDelete` behavior. Uses DELETE ... WHERE with conditions from * graphile-connection-filter (or PostGraphile's built-in condition type). * * Uses `RETURNING ` (not `RETURNING *`) + follow-up SELECT * to respect column-level SELECT grants. */ export declare const BulkDeletePlugin: GraphileConfig.Plugin;