import { State } from '../types/store'; import Options from '../types/options'; export declare const createState: (options: Options) => State, getState: () => State, removeState: (id: number) => void, destroyed: (partialStates?: State[] | undefined) => void;