import { Payload } from '../../..'; import { Document } from '../../../types'; export declare type Options = { collection: string; id: string | number; data: Partial; depth?: number; locale?: string; fallbackLocale?: string; user?: Document; overrideAccess?: boolean; showHiddenFields?: boolean; filePath?: string; file?: File; overwriteExistingFiles?: boolean; draft?: boolean; autosave?: boolean; }; export default function updateLocal(payload: Payload, options: Options): Promise;