import { Parameter, ProviderConfigurationFormat } from "./../index";
export interface ProviderEntryInterface {
    fileName?: string;
    format?: ProviderConfigurationFormat;
    name?: string;
}
export declare class ProviderEntry implements ProviderEntryInterface, Parameter {
    fileName?: string;
    format?: ProviderConfigurationFormat;
    name?: string;
    constructor(data: any);
    static getFileNameDefault(): string;
    static getFileNameDescription(): string;
    static getFormatDefault(): ProviderConfigurationFormat;
    static getFormatDescription(): string;
    static getNameDefault(): string;
    static getNameDescription(): string;
    static fromJson(data: any): ProviderEntry;
    toJson(): any;
    clone(): ProviderEntry;
}
