import { SetStoreFunction, Store } from 'solid-js/store'; interface Options { name?: string; } /** * This function is meant to create a global state registered in its * own reactive context, essentially allowing the creation outside of * your solid application. * * @param state - Object state to make reactive * @param options - See [official doc](https://github.com/ryansolid/solid/blob/master/documentation/api.md#createstateinitvalue-state-setstate) */ export declare function createGlobalState(state: TState, options?: Options): [Store, SetStoreFunction]; export {};