export type UserInfo = { userId: number; staffList: any; }; export declare const useUserInfoStore: import('pinia').StoreDefinition<"userInfo", { userId: number; staffList: any; }, { getUserId: (state: { userId: number; staffList: any; } & import('pinia').PiniaCustomStateProperties<{ userId: number; staffList: any; }>) => number; getStaffList: (state: { userId: number; staffList: any; } & import('pinia').PiniaCustomStateProperties<{ userId: number; staffList: any; }>) => any; getStuffName: (state: { userId: number; staffList: any; } & import('pinia').PiniaCustomStateProperties<{ userId: number; staffList: any; }>) => (id: number) => any; }, { setUserInfo(userInfo: UserInfo): void; }>;