import { FileDataStoreInterface, Parameter, FileDataStore } from "./../index";
export interface ThemeFileDataStoreInterface extends FileDataStoreInterface {
    fileContent?: string;
}
export declare class ThemeFileDataStore extends FileDataStore implements ThemeFileDataStoreInterface, Parameter {
    fileContent?: string;
    constructor(data: any);
    static getFileContentDefault(): string;
    static getFileContentDescription(): string;
    static fromJson(data: any): ThemeFileDataStore;
    toJson(): any;
    clone(): ThemeFileDataStore;
}
