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