import { Observable } from "rxjs";
import { Sid, Tip } from "./models/types";
import { Eno } from "./models/Eno";
import { IEnSrvOptions } from "./IEnSrvOptions";
export interface IReadOptions {
    branch?: string;
    ifNotSid?: string[];
}
export declare function read(tip: Tip, enSrvOptions: IEnSrvOptions, readOptions?: IReadOptions): Observable<Eno>;
export declare function readSid(sid: Sid, enSrvOptions: IEnSrvOptions, readOptions?: IReadOptions): Observable<Eno>;
