export declare class ExpandedBase64 {
    readonly original: string;
    readonly html: string;
    readonly text: string;
    constructor(htmlBase64: string);
    toJSON(): expandedBase64Json;
}
export interface expandedBase64Json {
    original: string;
    html: string;
    text: string;
}
