type WithDedupeOptions = {
    enabled?: boolean | undefined;
    id?: string | undefined;
};
/** Deduplicates in-flight promises. */
export declare function withDedupe<T>(fn: () => Promise<T>, { enabled, id }: WithDedupeOptions): Promise<T>;
export {};
//# sourceMappingURL=withDedupe.d.ts.map