import { OnInit, EventEmitter } from '@angular/core';
export interface NgxFlowChatOptions {
    groupBackground?: string;
    groupShadow?: string;
    groupBorderRadius?: string;
    groupTextColor?: string;
    background?: string;
    shadow?: string;
    borderRadius?: string;
    textColor?: string;
    width?: string;
}
export interface NgxFlowChatData {
    id: string;
    name: string;
    groupData?: Array<any>;
}
export declare class NgxFlowchartComponent implements OnInit {
    /**
     * Flow Data
     */
    data: NgxFlowChatData;
    /**
     * Click Event
     */
    clickName: EventEmitter<any>;
    /**
     * option
     */
    options: NgxFlowChatOptions;
    constructor();
    ngOnInit(): void;
    clickFlow(data: any): void;
}
