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