import { I as IRole } from '../role.entities-Bimwb-vf.js'; import * as axios from 'axios'; declare function fetchCreateRoles(data: IRole): Promise>; declare function fetchRolesId({ _id }: { _id: string; }): Promise>; declare function fetchRoles(): Promise>; declare function fetchUpdateRoles({ id, data }: { id: string; data: Partial; }): Promise>; export { IRole, fetchCreateRoles, fetchRoles, fetchRolesId, fetchUpdateRoles };