import { StoreDefinition } from 'pinia'; /** * A Pinia store for managing user preferences. * * This store provides a reactive state that allows components * to access and update user preference data, such as the * preferred view option. * * The state is structured to contain: * - `listView`: A boolean indicating whether the user prefers * a list view or not. * * The store's unique identifier is "UserPreferencesStore". */ export const useUserPreferencesStore: StoreDefinition<"UserPreferencesStore", { listView: boolean; }, {}, {}>; //# sourceMappingURL=userPreferences.d.ts.map