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