import { type Promisable } from '@xylabs/promise'; import type { ForgetConfig } from './ForgetConfig.ts'; /** * Explicitly launches an async function or promise without awaiting it (fire-and-forget). * @param promise - The promise or promisable value to forget. * @param config - Optional configuration for timeout, error handling, and completion callbacks. */ export declare const forget: (promise: Promisable, config?: ForgetConfig) => void; //# sourceMappingURL=forget.d.ts.map