import React from 'react'; import { ActionSchema } from '../../typings'; export interface ActionSchemaRendererProps { schema: ActionSchema; actionId: string; actionSetId: string; } declare const ActionSchemaRenderer: React.FC; export { ActionSchemaRenderer };