import type { ModuleBuilder } from './types'; /** * Create a {@see ModuleBuilder} instance. * * ```ts * interface RootState { * module_one: { * list: string[] * } * } * const module = createModule({ list: [] }); * * @param initialState - initial module state * @typeParam State - Type of module state, usually an key in RootState. * @typeParam RootState - Type of root store state */ export declare function createModule(initialState: State): ModuleBuilder; //# sourceMappingURL=createModule.d.ts.map