import { BlockvConnector } from ".."; import Block from "../bv-operate/block"; interface UnfreezeOptions { /** * The existing object definition token. */ objectDefinitionToken: string; /** * The behavior uri to unfreeze. */ uri: string; /** * The behavior's current config. */ config: any; behaviorUris: string[]; shouldCreateBrain?: boolean; links?: any; } /** * Unfreezes a behavior on an existing object definition. * * NOTE: This will only work with behaviors that already include initial state in the object. * This function will not check if the behavior has already been registered on the object definition. */ export default function unfreezeBehavior(this: BlockvConnector, o: UnfreezeOptions): Promise; export {}; //# sourceMappingURL=unfreeze-behavior.d.ts.map