export interface ListWatchErrorReaction {
resync: boolean;
backoff: number;
}
export declare type ListWatchErrorStrategy = (err: any, errCount: number) => ListWatchErrorReaction;
export declare const DefaultListWatchErrorStrategy: ListWatchErrorStrategy;