import { AnyIterable } from 'augmentative-iterable';
export declare function finallyRecipe(iterableType: 'sync' | 'async'): ((this: Iterable<any>, callback: (success: boolean) => unknown) => Generator<any, void, any>) | ((this: AnyIterable<any>, callback: (success: boolean) => Promise<unknown>) => AsyncGenerator<any, void, any>);
