import type { RoleRead } from '../lib/api/vauth-be-v2/models/RoleRead.js'; export type { RoleRead }; export declare const useResourceRoleApi: () => { listResourceRoles: (resourceKey: string, params?: { page?: number; perPage?: number; }) => Promise; getResourceRole: (resourceKey: string, roleKey: string) => Promise; getRoleDerivation: (resourceKey: string, roleKey: string) => Promise; deleteResourceRole: (resourceKey: string, roleKey: string) => Promise; deleteRoleDerivation: (resourceKey: string, roleKey: string, derivation: any) => Promise; };