import type { MetaRoleType } from "../../contracts/utils/metadata/MetaRoleType"; import type { MetadataApiSpecInfo as MetadataApiSpecInfoContract } from "../../contracts/utils/metadata/MetadataApiSpecInfo"; import type { RequestMethod } from "../../types/RequestMethod"; export declare class MetadataApiSpecInfo implements MetadataApiSpecInfoContract { private options; constructor(options: { doc_url: string; name: string; title: string; role: MetaRoleType[]; method: RequestMethod; endpoint: string; deprecated: boolean; entity_path: string; }); get doc_url(): string; get name(): string; get title(): string; get role(): MetaRoleType[]; get method(): RequestMethod; get endpoint(): string; get deprecated(): boolean; get entity_path(): string; }