export declare const API_ENDPOINTS: {
    readonly ENTITIES: {
        readonly USERS: "users";
        readonly WORKOUTS: "workouts";
    };
    readonly USERS: {
        readonly TOKEN: "token";
        readonly TOKEN_REFRESH: "token/refresh";
        readonly USER: "user";
        readonly PREFERENCES: "preferences";
        readonly SETTINGS: "settings";
    };
    readonly WORKOUTS: {
        readonly WORKOUTS: "workouts";
    };
};
export type ApiEndpointPath = (typeof API_ENDPOINTS)[keyof typeof API_ENDPOINTS][keyof (typeof API_ENDPOINTS)[keyof typeof API_ENDPOINTS]];
//# sourceMappingURL=api-endpoints.d.ts.map