import { Program, Interface, Model, ModelProperty } from "@typespec/compiler"; export interface MsGraphRoute { resource: Model | ModelProperty; routeType: MsGraphRouteType; theInterface: Interface; } export declare enum MsGraphRouteType { EntitySet = 0, Singleton = 1, NavigationProperty = 2 } export declare function GetMsGraphRoutes(program: Program): Map; //# sourceMappingURL=ms-graph-route.d.ts.map