export interface SpoilerInterface { raw: string; content: string; } export declare class Spoiler implements SpoilerInterface { raw: string; content: string; constructor(data: SpoilerInterface); }