import { Group, GroupMember } from '../global/types.generated'; import { Subset } from '../global/customTypes'; export type GroupStore = { sharedGroupId?: string; setSharedGroupId: (groupId?: string) => void; groupData: Subset; setGroupData: (data: GroupStore['groupData']) => void; clearGroupData: () => void; setFundingPercentage: (fundingPercentage: number) => void; }; declare const useGroupStore: import("zustand").UseBoundStore, "setState"> & { setState(partial: GroupStore | Partial | ((state: GroupStore) => GroupStore | Partial), replace?: boolean | undefined, action?: A | undefined): void; }>; export default useGroupStore;