import { IContent, ContentType } from '../../types';
/**
 * Implementation of base content.
 */
export declare abstract class AbstractContent implements IContent {
    type: ContentType;
    constructor(type: ContentType);
}
