import { HtBaseNode } from './common';
import { HtNodeWithContentType } from './node-types';
interface SmartIntent {
    title: string;
    description: string;
}
export interface HtSmartIntentNode extends HtBaseNode {
    type: HtNodeWithContentType.SMART_INTENT;
    content: SmartIntent;
}
export {};
