export default function useAsyncEffect(effect: AsyncEffectCallback, dependencies: any, { comparison }?: { comparison?: Comparison; }): void; export type AsyncDestructor = import('./types').AsyncDestructor; export type AsyncEffectCallback = import('./types').AsyncEffectCallback; export type Comparison = import('./types').Comparison;