import type { NodeProps } from './types'; declare class WhenNode { readonly type: string; readonly subType: string; readonly name: string; readonly referenceName: string; props: NodeProps; constructor(subType: string, referenceName: string, name: string, options?: NodeProps); } export default WhenNode;