import { Management } from 'auth0'; import DefaultHandler from './default'; import { Asset, Assets } from '../../../types'; export type Flow = { name: string; body: string; }; export declare const schema: { type: string; items: { type: string; properties: { name: { type: string; }; body: { type: string; }; }; required: string[]; }; additionalProperties: boolean; }; export default class FlowHandler extends DefaultHandler { existing: Asset; constructor(options: DefaultHandler); objString(item: any): string; getFlows(flows: Array): Promise; getType(): Promise; processChanges(assets: Assets): Promise; formateFlowConnectionId(flows: any, connectionIdMap: any): Promise; pargeFlowConnectionName(flows: any, connectionNameMap: any): Promise; }