export default function useRoles(): { roles: import("vue").ComputedRef; hasRole: (role: string) => boolean; hasAny: (...args: any[]) => boolean; hasAll: (wanted?: string[]) => boolean; reload: () => Promise; };