import { Content } from './types'; export declare class StringContent implements Content { value: string; constructor(initialValue?: string); append(value: string): this; prepend(value: string): this; }