import { AsyncState } from "./create-async-reducer"; export interface Duration { amount: number; unit: DurationUnitType; } export declare type DurationUnitType = 'seconds' | 'minutes' | 'hours' | 'days'; export declare const isAsyncStateStale: (state: AsyncState, staleInterval?: Duration) => boolean;