import { Method } from 'axios'; export interface EndpointType { url: (params?: object) => string; method: Method; } declare const Endpoints: { [key: string]: EndpointType; }; export default Endpoints; //# sourceMappingURL=Endpoints.d.ts.map