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