import { EventBlock } from "../types";
export declare const chainsStore: {
    newState: () => {
        id: string;
        liveEventIds: string[];
        parentChainId: string;
        canAutoActivate: boolean;
        duplicateEventsToAdd: Record<string, EventBlock>;
        variablesByName: Record<string, any>;
    };
    newRefs: () => {};
};
