import { BaseSequenceItem } from './base.js'; import type { SequenceVariable, KismetVariableValue, SequenceItemTypeName } from '../structures/index.js'; import type { BaseKismetItemOptions } from './options.js'; export declare class SequenceNode extends BaseSequenceItem { hasBreakpoint: boolean; private variables; constructor(options: BaseKismetItemOptions & { type?: SequenceItemTypeName; }); setBreakpoint(enabled: boolean): this; setVariable(variableName: string, value: SequenceVariable | string | number, hidden?: boolean): this; toJSON(): Record; toString(): string; } //# sourceMappingURL=node.d.ts.map