import { Parameter } from "./../index";
export interface NamedDestinationGoToNamedInterface {
    name?: string;
}
export declare class NamedDestinationGoToNamed implements NamedDestinationGoToNamedInterface, Parameter {
    name?: string;
    constructor(data: any);
    static getNameDefault(): string;
    static getNameDescription(): string;
    static fromJson(data: any): NamedDestinationGoToNamed;
    toJson(): any;
    clone(): NamedDestinationGoToNamed;
}
