import { AxiosResponse } from 'axios';
import { Observable } from 'rxjs';
import { Registry } from '../../providers/ServiceProvider';
export interface HttpManagerProps {
    version?: string;
}
export interface HttpManagerLogProps {
    registry: Registry;
}
export interface RegistryActionsProps {
    registry: Registry;
}
export interface ResponseStatusProps<T> {
    response: Observable<AxiosResponse<T>>;
}
