import { NodeItem } from '../interface'; export declare function createExclusiveGateway(xml: Document, node: NodeItem, pIds?: string[]): { eles: HTMLElement[]; }; export declare function createSequenceFlow(xml: Document, node: NodeItem, exclusiveGatewayId?: string, nextId?: string): HTMLElement; export declare function createConditionNode(xml: Document, data: NodeItem, exclusiveGatewayId: string, stopId: string): { eles: HTMLElement[]; prevId: string; };