import { HttpClient } from '../http/http-client';
export declare type EndpointsReturnType = {
    requestMethod: string;
    uriPatterns: Array<string>;
};
export declare class Endpoints {
    private httpClient;
    constructor(httpClient: HttpClient);
    getAll(): Promise<EndpointsReturnType[]>;
}
