/** * List slice for the MasterView store. * * Manages search params, data, loading state, and selection. * * @internal * @module store/slices/listSlice */ import type { StateCreator } from 'zustand'; import type { MasterPatternViewEntity } from '../../types/service.types'; import type { MasterViewState, ListState, SearchParams } from '../types'; export declare const DEFAULT_SEARCH_PARAMS: SearchParams; export declare const createListSlice: (initialPageSize?: number) => StateCreator, [], [], ListState>; //# sourceMappingURL=listSlice.d.ts.map