import { Context } from '../context'; export type FortuneInternalPasteDecision = { /** True when clipboard/grid prep must stop (e.g. missing copy source data). */ abortPaste: boolean; /** True when paste should use `pasteHandlerOfCopyPaste` / cut handler for Fortune HTML. */ internalFortunePaste: boolean; }; /** * Decides whether pasted HTML corresponds to the last in-app Fortune copy so we can use * the internal paste path (grid + `luckysheet_copy_save`) instead of HTML table parsing. */ export declare function computeFortuneInternalPasteDecision(ctx: Context, txtdata: string): FortuneInternalPasteDecision;