/** @packageDocumentation * @module Base */ import * as React from "react"; import type { StoreApi } from "zustand"; import type { NineZoneState } from "../state/NineZoneState"; /** @internal */ export type LayoutState = NineZoneState; /** @internal */ export type LayoutStore = StoreApi; /** @internal */ export declare const LayoutStoreContext: React.Context; /** @internal */ export declare function createLayoutStore(args?: Partial): LayoutStore; /** @internal */ export declare function useLayoutStore(): LayoutStore; /** @internal */ export declare function useLayout(selector: (state: LayoutState) => SelectorOutput, multipleSlices?: boolean): SelectorOutput; //# sourceMappingURL=LayoutStore.d.ts.map