import { Content } from './types'; export declare class ObjectContent implements Content> { value: Record; constructor(initialValue?: Record); append(path: string, value: any): this; prepend(path: string, value: any): this; }