import { Parameter } from "./../index";
export interface PortfolioSelectionInterface {
    fileName?: string;
    path?: string;
}
export declare class PortfolioSelection implements PortfolioSelectionInterface, Parameter {
    fileName?: string;
    path?: string;
    constructor(data: any);
    static getFileNameDefault(): string;
    static getFileNameDescription(): string;
    static getPathDefault(): string;
    static getPathDescription(): string;
    static fromJson(data: any): PortfolioSelection;
    toJson(): any;
    clone(): PortfolioSelection;
}
