import { ApiMethodDeclaration } from "../../index"; import { Role } from "../types"; type ParamsData = { data: Role; }; type ResponseData = Role; declare const create: ApiMethodDeclaration; export { create };