import type { INodeProperties } from 'n8n-workflow'; import { NodeConnectionType } from 'n8n-workflow'; /** * Get the connection hint field for a node * * Creates a notice field that displays which node types can be connected * to this node. Used primarily in AI Agent-compatible nodes. * * @param allowedConnectionTypes - Array of NodeConnectionType values that this node accepts * @returns INodeProperties object representing a notice field */ export declare function getConnectionHintNoticeField(allowedConnectionTypes: NodeConnectionType[]): INodeProperties; //# sourceMappingURL=sharedFields.d.ts.map