import { FunctionComponent, PropsWithChildren } from 'react'; import { PipeErrorHandler as PipeErrorHandlerType } from '@kaoto-next/camel-catalog/types'; interface PipeErrorHandlerEditorProps { schema: unknown; model: unknown; onChangeModel: (model: PipeErrorHandlerType) => void; } export declare const PipeErrorHandlerEditor: FunctionComponent>; export {};