import { TimelinePipe } from '@pnp/core'; import { Queryable } from '@pnp/queryable'; export interface IThrottlingDetectorProps { replace?: boolean; defaultWait?: number; onThrottlingAlert?: (wait: number) => void; } /** * This is a slightly modified version of original pnpjs version * source: https://github.com/pnp/pnpjs/blob/a9b15c4a8f517d99a14e626f2494bd8549435536/packages/queryable/behaviors/browser-fetch.ts */ export declare function ThrottlingDetector(props?: IThrottlingDetectorProps): TimelinePipe;