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