import { UseQueryResult, UseQueryOptions } from "@tanstack/react-query"; export declare type UseGetIdentityProps = { queryOptions?: UseQueryOptions; }; /** * `useGetIdentity` calls the `getUserIdentity` method from the {@link https://refine.dev/docs/core/providers/auth-provider `authProvider`} under the hood. * * @see {@link https://refine.dev/docs/core/hooks/auth/useGetIdentity} for more details. * * @typeParam TData - Result data of the query * */ export declare const useGetIdentity: ({ queryOptions, }?: UseGetIdentityProps) => UseQueryResult; //# sourceMappingURL=index.d.ts.map