type BasicUser = { id?: number; name?: string; email?: string; role?: string; picture?: string; followMe: { location: string; following: { id: number; location: string; color: string; } & Record; followers: number[]; } & Record; } & Record; export declare const useUsers: () => { me: BasicUser; all: BasicUser[]; }; export {};