export declare const concatPath: (root: string, child: string) => string;
/**
 * <p>
 * Define um RestResource que pode ter um RestResource pai.
 * Se você quiser declarar sua API, mas não quiser usar a implementação HttpClient incorporada, esse é o caminho.
 * </p>
 * <p>
 * Defines a RestResource that may have a parent RestResource.
 * If you want to declare your API but don't want to make use of the embedded HttpClient implementation, that's the way.
 * </p>
 */
export declare class LeanRestResource {
    protected readonly uri: string;
    constructor(path: string, parent?: LeanRestResource);
}
