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