import React from 'react';
import { SubotNodeIntent } from "../../../../interfaces/types";
type Props = {
    subIntents: SubotNodeIntent[];
};
declare const SubInlineIntent: ({ subIntents }: Props) => React.JSX.Element;
export default SubInlineIntent;
