/** Defined routes name, type and id. Typically used to generate autocomplete lists. */
export interface DefinedRoute {
    /** Human readable name for your route */
    displayName?: string;
    /** Id of your route */
    routeId: number;
    /** Protocol supported by this route */
    type: string;
}
//# sourceMappingURL=DefinedRoute.d.ts.map