export declare const NODE_TYPES: { readonly IF: "n8n-nodes-base.if"; readonly SWITCH: "n8n-nodes-base.switch"; readonly MERGE: "n8n-nodes-base.merge"; readonly STICKY_NOTE: "n8n-nodes-base.stickyNote"; readonly SPLIT_IN_BATCHES: "n8n-nodes-base.splitInBatches"; readonly HTTP_REQUEST: "n8n-nodes-base.httpRequest"; readonly WEBHOOK: "n8n-nodes-base.webhook"; readonly DATA_TABLE: "n8n-nodes-base.dataTable"; }; export type NodeTypeValue = (typeof NODE_TYPES)[keyof typeof NODE_TYPES]; export declare function isIfNodeType(type: string): type is typeof NODE_TYPES.IF; export declare function isSwitchNodeType(type: string): type is typeof NODE_TYPES.SWITCH; export declare function isMergeNodeType(type: string): type is typeof NODE_TYPES.MERGE; export declare function isStickyNoteType(type: string): type is typeof NODE_TYPES.STICKY_NOTE; export declare function isSplitInBatchesType(type: string): type is typeof NODE_TYPES.SPLIT_IN_BATCHES; export declare function isHttpRequestType(type: string): type is typeof NODE_TYPES.HTTP_REQUEST; export declare function isWebhookType(type: string): type is typeof NODE_TYPES.WEBHOOK; export declare function isDataTableType(type: string): type is typeof NODE_TYPES.DATA_TABLE;