import { UseQueryResult, UseQueryOptions } from "react-query"; /** * `usePermissions` calls the `getPermissions` method from the {@link https://refine.dev/docs/api-references/providers/auth-provider `authProvider`} under the hood. * * @see {@link https://refine.dev/docs/api-references/hooks/auth/usePermissions} for more details. * * @typeParam TData - Result data of the query * */ export declare const usePermissions: (options?: UseQueryOptions | undefined) => import("react-query/types/").QueryObserverResult;