export declare const DataDemo: {
    nodes: ({
        id: string;
        type: string;
        properties: {
            value: string;
            userId: string;
            email?: undefined;
            phone?: undefined;
            number?: undefined;
            address?: undefined;
            name?: undefined;
            title?: undefined;
            description?: undefined;
            url?: undefined;
        };
        params: {
            eid?: undefined;
            isFirst?: undefined;
            label?: undefined;
        };
        labels: string[];
    } | {
        id: string;
        type: string;
        properties: {
            value: string;
            email: string;
            userId?: undefined;
            phone?: undefined;
            number?: undefined;
            address?: undefined;
            name?: undefined;
            title?: undefined;
            description?: undefined;
            url?: undefined;
        };
        params: {
            eid: string;
            isFirst: boolean;
            label: string;
        };
        labels: string[];
    } | {
        id: string;
        type: string;
        properties: {
            value: string;
            userId?: undefined;
            email?: undefined;
            phone?: undefined;
            number?: undefined;
            address?: undefined;
            name?: undefined;
            title?: undefined;
            description?: undefined;
            url?: undefined;
        };
        labels: string[];
        params?: undefined;
    } | {
        id: string;
        type: string;
        properties: {
            value: string;
            phone: string;
            userId?: undefined;
            email?: undefined;
            number?: undefined;
            address?: undefined;
            name?: undefined;
            title?: undefined;
            description?: undefined;
            url?: undefined;
        };
        labels: string[];
        params?: undefined;
    } | {
        id: string;
        type: string;
        properties: {
            value: string;
            number: string;
            userId?: undefined;
            email?: undefined;
            phone?: undefined;
            address?: undefined;
            name?: undefined;
            title?: undefined;
            description?: undefined;
            url?: undefined;
        };
        labels: string[];
        params?: undefined;
    } | {
        id: string;
        type: string;
        labels: string[];
        properties: {
            value: string;
            number: number;
            userId?: undefined;
            email?: undefined;
            phone?: undefined;
            address?: undefined;
            name?: undefined;
            title?: undefined;
            description?: undefined;
            url?: undefined;
        };
        params?: undefined;
    } | {
        id: string;
        type: string;
        labels: string[];
        properties: {
            value: string;
            address: string;
            userId?: undefined;
            email?: undefined;
            phone?: undefined;
            number?: undefined;
            name?: undefined;
            title?: undefined;
            description?: undefined;
            url?: undefined;
        };
        params?: undefined;
    } | {
        id: string;
        type: string;
        labels: string[];
        properties: {
            value: string;
            name: string;
            title: string;
            description: string;
            url: string;
            userId?: undefined;
            email?: undefined;
            phone?: undefined;
            number?: undefined;
            address?: undefined;
        };
        params?: undefined;
    })[];
    links: ({
        id: string;
        source: string;
        target: string;
        type: string;
        properties: {
            value: string;
        };
        params: {};
        subproperty?: undefined;
        attributes?: undefined;
        indications?: undefined;
        direction?: undefined;
        minCardinality?: undefined;
        maxCardinality?: undefined;
    } | {
        id: string;
        source: string;
        target: string;
        type: string;
        properties: {
            value: string;
        };
        params?: undefined;
        subproperty?: undefined;
        attributes?: undefined;
        indications?: undefined;
        direction?: undefined;
        minCardinality?: undefined;
        maxCardinality?: undefined;
    } | {
        id: string;
        source: string;
        target: string;
        type: string;
        properties: {
            value: string;
        };
        subproperty: string[];
        attributes: string[];
        indications: string[];
        direction: string;
        minCardinality: number;
        maxCardinality: number;
        params?: undefined;
    })[];
    metrics: {
        count: number;
    };
};
