export interface ForgetConfig<T = any> {
    name?: string;
    onCancel?: () => void;
    onComplete?: (result: [T | undefined, Error | undefined]) => void;
    onException?: (error: Error) => void;
    timeout?: number;
}
export declare const defaultForgetConfig: ForgetConfig<unknown>;
//# sourceMappingURL=ForgetConfig.d.ts.map