import type { CollectionSlug, FindOptions } from '../../index.js'; import type { PayloadRequest, PopulateType, SelectType, TransformCollectionWithSelect } from '../../types/index.js'; import type { Collection } from '../config/types.js'; export type Arguments = { collection: Collection; depth?: number; disableTransaction?: boolean; id: number | string; overrideAccess?: boolean; overrideLock?: boolean; populate?: PopulateType; req: PayloadRequest; showHiddenFields?: boolean; trash?: boolean; } & Pick, 'select'>; export declare const deleteByIDOperation: (incomingArgs: Arguments) => Promise>; //# sourceMappingURL=deleteByID.d.ts.map