import IGameGraphChild from "./IGameGraphChild"; import { ExtractProps } from "./utils/extractProps"; import Nullable from "./utils/Nullable"; export default interface IMathNode extends IGameGraphChild { expression: Nullable; } export declare const mathNodeSchema: Required>; export declare const mathNodeDefaults: Partial>;