export declare function useGetAll<T>(
  getAllFn: () => Promise<[T, any]>
): {
  data: T | null;
  error: any;
  loading: boolean;
};