import { SafeKeyValueString } from '../complexType/SafeKeyValueString';
/** route of this service */
export interface Route {
    /** Path to use in API */
    path?: string;
    /** Path with variables applyed */
    url?: string;
    /** Variables to use in the path */
    vars: SafeKeyValueString[];
}
//# sourceMappingURL=Route.d.ts.map