import { FieldValue, PayloadOptions } from '../Types'; /** * @hidden */ export interface Payload { [field: string]: FieldValue | undefined; } /** * @hidden */ export declare class PayloadSanitizer { /** * Inline update of the payload based on the provided/default options * * @param payload to sanitize * @param opts for processing default {trimToNull & excludeNulls} */ static sanitize(payload: T, opts?: PayloadOptions): void; } //# sourceMappingURL=PayloadSanitizer.d.ts.map