import { ComputedRef } from 'vue'; import { RefOrValue } from './helpers'; /** * Use the composable `useHasuraClaim` to get the value of a specific Hasura claim of the user. * * @example * ```tsx * // if `x-hasura-company-id` exists as a custom claim * const companyId = useHasuraClaim('company-id') * ``` * * @docs https://docs.nhost.io/reference/vue/use-hasura-claim */ export declare const useHasuraClaim: (name: RefOrValue) => ComputedRef; //# sourceMappingURL=useHasuraClaim.d.ts.map